/* AI Guide Page Main Content */
/* .ai-guide-page .main-content {
    zoom: 0.75 !important;
} */

html {
    scroll-behavior: smooth !important;
}


/* Aside Right Sticky Positioning */
.aside-right {
	position: sticky;
	top: 4rem;
}

/* Contact Icons Container */
.contact-icons-container {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding: 1rem;
}

.contact-icon-link {
	text-decoration: none;
	transition: transform 0.3s ease;
}

.contact-icon-link:hover {
	transform: translateY(-2px);
}

.glassmorphism-circle {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glassmorphism-circle:hover {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
	font-size: 20px;
	color: var(--color-white);
	transition: color 0.3s ease;
}


@media (min-width: 1200px) {
    .ai-guide-page .opening-text .fs-22 {
        zoom: 0.65 !important;
    }

    .ai-guide-page .paragraph-left-section .fs-24 {
        zoom: 0.75 !important;
    }

    .ai-guide-page .chapter-block .chapter-heading {
        zoom: 0.75 !important;
    }

    .ai-guide-page .chapter-subsection .chapter-subsection-heading {
        zoom: 0.75 !important;
    }

    .ai-guide-page .chapter-subsection .chapter-description-section p {
        zoom: 0.75 !important;
    }

    /* Bullet list components within chapter subsections */
    .ai-guide-page .chapter-subsection .bullet-list-title,
    .ai-guide-page .chapter-subsection .bullet-section-title {
        zoom: 0.75 !important;
    }

    /* Specifically target bullet list with icon heading */
    .ai-guide-page .chapter-subsection .bullet-list-with-icon .bullet-section-title {
        zoom: 0.75 !important;
    }

    .ai-guide-page .chapter-subsection .bullet-list-item,
    .ai-guide-page .chapter-subsection .bullet-point-content p {
        zoom: 0.75 !important;
    }
}