.navbar-brand .logo-nav {
    height: 100px;
    width: auto;
    max-width: 100%;
}

.navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
    color: #642a73 !important;
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #642a73;
    border-radius: 2px;
}

.btn-primary {
    background-color: #642a73;
    border-color: #642a73;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-1px);
}

.mobile-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-sidebar-overlay.show {
    opacity: 1;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-sidebar.show {
    right: 0px;
}

.mobile-sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-sidebar-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-sidebar-close:hover {
    color: #495057;
}

.mobile-sidebar-nav {
    padding: 1.5rem 0;
}

.mobile-sidebar-nav .nav-item {
    margin: 0;
}

.mobile-sidebar-nav .nav-link {
    padding: 1rem 1.5rem;
    color: #495057;
    font-weight: 600;
    border-bottom: 1px solid #f8f9fa;
    margin: 0;
    transition: all 0.3s ease;
}

.mobile-sidebar-nav .nav-link:hover {
    background-color: #f8f9fa;
    color: #642a73;
    padding-left: 2rem;
}

.mobile-sidebar-nav .nav-link.active {
    background-color: rgba(100, 42, 115, 0.1);
    color: #642a73;
    border-left: 4px solid #642a73;
}

.mobile-sidebar-nav .nav-link.active::after {
    display: none;
}

.mobile-sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
    margin-top: auto;
}

.mobile-sidebar .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

.custom-toggler {
    border: none;
    background: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #495057;
    transition: color 0.3s ease;
}

.custom-toggler:hover {
    color: #642a73;
}

.custom-toggler i {
    transition: transform 0.3s ease;
}

.custom-toggler.active i:before {
    content: "\F62A";
}

@media (min-width: 992px) {
    .mobile-sidebar-overlay,
    .mobile-sidebar,
    .custom-toggler {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        display: none !important;
    }

    .mobile-sidebar-overlay {
        display: block;
    }

    .custom-toggler {
        display: flex;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .navbar-brand .logo-nav {
        height: 80px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .mobile-sidebar {
        width: 100vw;
        right: -100vw;
    }
}

@media (max-width: 375px) {
    .navbar-brand .logo-nav {
        height: 80px;
    }
}

body.sidebar-open {
    overflow: hidden;
}

/* Base button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600 !important;
    cursor: pointer;
    border-radius: 4px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    width: auto;
}

/* Primary */
.btn-primary {
    background-color: #642a73 !important;
    color: #fff !important;
    border-color: #642a73 !important;
}

.btn-primary:hover {
    background-color: transparent !important;
    color: #642a73 !important;
    border-color: #642a73 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 12px rgba(100, 42, 115, 0.4) !important;
}

/* Secondary */
.btn-secondary {
    background-color: transparent !important;
    color: #642a73 !important;
    border-color: #642a73 !important;
}

.btn-secondary:hover {
    background-color: #642a73 !important;
    color: #fff !important;
    border-color: #642a73 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 12px rgba(100, 42, 115, 0.4) !important;
}

.hero-banner {
    background:
        linear-gradient(
            to right,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.9) 30%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 100%
        ),
        url("../images/slider/banner.webp");
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #333;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-title span {
    color: #f2a807;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-content img {
    position: absolute;
    top: 63%;
    right: -19%;
}

@media (min-width: 768px) and (max-width: 992px) {
    .hero-content {
        width: 70% !important;
    }
}

@media (max-width: 1200px) {
    .hero-content img {
        right: -32%;
    }
}

@media (max-width: 991px) {
    .hero-content img {
        top: 71%;
        right: -14%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-banner {
        background:
            linear-gradient(
                to right,
                rgba(255, 255, 255, 1) 0%,
                rgba(255, 255, 255, 0.9) 20%,
                rgba(255, 255, 255, 0) 60%,
                rgba(255, 255, 255, 0) 100%
            ),
            url("../images/slider/banner-mobile.webp");
        min-height: 50vh;
    }

    .hero-content {
        width: 56%;
    }

    .hero-content img {
        position: absolute;
        top: -18%;
        right: -67%;
        height: auto;
        width: 119px;
    }
}

@media (max-width: 424px) {
    .hero-content img {
        right: -75%;
    }
}

@media (max-width: 374px) {
    .hero-content img {
        right: -75%;
        top: 14%;
    }
}

.bg-offwhite {
    background-color: #f0edeb;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

.content-area {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}

.section-label {
    color: #000;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
    }

    .content-area {
        padding-left: 0;
        padding-top: 2rem;
        min-height: auto;
    }

    .section-label::before {
        display: none;
    }
}

.minimal-card {
    aspect-ratio: 1 / 1; /* makes it square */
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.minimal-card:hover {
    transform: translateY(-5px);
}

.minimal-card h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.daycare-section {
    background: linear-gradient(360deg, #8b3a9c 30%, #ff6b35 30%);
}

.content-card,
.image-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.content-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label {
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.main-title {
    color: #1f2937;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.description {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.image-container {
    height: 100%;
    position: relative;
}

.daycare-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

@media (max-width: 767.98px) {
    .main-title {
        font-size: 28px;
    }

    .content-inner {
        padding: 32px 24px;
    }

    .image-container {
        min-height: 300px;
    }
}

@media (min-width: 768px) {
    .equal-height {
        display: flex;
        align-items: stretch;
    }

    .equal-height .col-md-6 {
        display: flex;
    }

    .content-card,
    .image-card {
        flex: 1;
    }
}

.gradient-section {
    background: linear-gradient(360deg, #ff8fa3 30%, #ffd23f 30%);
}

.content-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-left: auto;
}

.proof-label {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.main-heading {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.description-text {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

.sh-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sh-section-image {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .gradient-section {
        padding: 40px 0;
    }

    .content-card {
        margin: 0 auto;
        padding: 32px 24px;
    }

    .main-heading {
        font-size: 2rem;
    }
}

.sh-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 50px 0 20px;
}

.sh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sh-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.sh-footer-logo h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #f6c725;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.sh-footer-logo .sh-daycare {
    font-size: 1rem;
    color: #f6c725;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sh-footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 0.9rem;
}

.sh-footer-section h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.sh-footer-links {
    list-style: none;
}

.sh-footer-links li {
    margin-bottom: 10px;
}

.sh-footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sh-footer-links a:hover {
    color: #f6c725;
}

.sh-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: max-content;
}

.sh-contact-item {
    color: #bdc3c7;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.sh-contact-item:hover {
    color: #f6c725;
}

.sh-contact-icon {
    color: #f6c725;
    font-size: 1rem;
    min-width: 20px;
}

.sh-social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sh-social-link {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sh-social-link:hover {
    color: #f6c725;
    transform: translateX(5px);
}

.sh-social-icon {
    color: #f6c725;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border: 2px solid #f6c725;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: transparent;
}

.sh-social-link:hover .sh-social-icon {
    background: #f6c725;
    color: #2c3e50;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(246, 199, 37, 0.3);
}

.sh-footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #95a5a6;
    font-size: 0.8rem;
}

.sh-footer-bottom a {
    color: #f6c725;
    text-decoration: none;
}

.sh-footer-bottom a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sh-footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }

    .sh-footer-logo {
        grid-column: 1 / -1;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .sh-container {
        padding: 0 15px;
    }

    .sh-footer {
        padding: 40px 0 20px;
    }

    .sh-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .sh-footer-logo h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .sh-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.cta-section {
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.trust-indicators {
    opacity: 0.6;
    margin-bottom: 3rem;
}

.trust-indicator {
    color: #6b7280;
    font-size: 0.875rem;
}

.main-heading {
    /* color: #0891b2; */
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

.sub-heading {
    color: #6b7280;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-info {
    margin-top: 2rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.contact-phone {
    font-weight: 600;
    color: #374151;
}

@media (min-width: 768px) {
    .main-heading {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .trust-indicators {
        flex-direction: column;
        gap: 1rem !important;
    }
}

/* NEW: Floating animations for images only */
@keyframes float-gentle {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes float-gentle-reverse {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(-3deg);
    }
}

/* Pink star floating animation */
.pink {
    animation: float-gentle 4s ease-in-out infinite;
}

/* Purple star floating animation */
img[src*="purple-star"] {
    animation: float-gentle-reverse 5s ease-in-out infinite;
    animation-delay: -2s;
}

.sh-daycare-section {
    background: linear-gradient(360deg, #8b3a9c 20%, #f0edeb 20%);
    padding: 80px 0;
}

.sh-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2b3d4f;
    margin-bottom: 2rem;
    position: relative;
}

.sh-section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: #000;
}

.sh-section-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2b3d4f;
    margin-bottom: 1.5rem;
}

.sh-section-image {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.sh-bottom-section {
    background-color: #2c3e50;
    padding: 60px 0;
    margin-top: 0;
}

@media (max-width: 768px) {
    .sh-section-title {
        font-size: 2rem;
        text-align: center;
    }

    .sh-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .sh-daycare-section {
        padding: 60px 0;
    }

    .sh-bottom-section {
        padding: 40px 0;
    }
}

.conf-section {
    padding: 80px 0;
    background-image: linear-gradient(360deg, #ffffff 5%, #ffffff 5%);
}

.conf-container {
    max-width: 1200px;
    margin: 0 auto;
}

.conf-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.conf-handshake-icon {
    position: relative;
}

@media (max-width: 500px) {
    .conf-handshake-icon img {
        width: 100%;
        height: auto;
    }
}

.conf-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 0;
}

.conf-text-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (min-width: 768px) {
    .conf-icon-wrapper {
        margin-bottom: 0;
    }

    .conf-text-wrapper {
        text-align: left;
        justify-content: flex-start;
    }

    .conf-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 992px) {
    .conf-title {
        font-size: 4rem;
    }
}

.hs-section {
    background: #ff6b35;
    padding: 60px 0;
    min-height: 500px;
}

.hs-section-2 {
    background: #ffd23f;
    padding: 60px 0;
    min-height: 500px;
}

.hs-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.hs-image-container {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.hs-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hs-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hs-title {
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hs-description {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hs-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.hs-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.hs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hs-list-item {
    color: #34495e;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.hs-list-item::before {
    content: "•";
    color: #ff6b1a;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -8px;
}

/* Health Safety Section - Reversed Layout (Content Left, Image Right) */
.hsr-section {
    background: #ff8fa3;
    padding: 60px 0;
    min-height: 500px;
}

.hsr-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.hsr-image-container {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.hsr-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hsr-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hsr-title {
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hsr-description {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hsr-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.hsr-link:hover {
    color: #c0392b;
    text-decoration: underline;
}

.hsr-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hsr-list-item {
    color: #34495e;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.hsr-list-item::before {
    content: "•";
    color: #ff8fa3;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hs-content,
    .hsr-content {
        padding: 30px 20px;
    }

    .hs-title,
    .hsr-title {
        font-size: 1.8rem;
    }

    .hs-image-container,
    .hsr-image-container {
        min-height: 250px;
    }
}

.ab-content h3 {
    font-size: 2rem;
}

.ab-content p {
    font-size: 1.1rem;
}

.cta-main-section {
    padding: 60px 0;
}

.cta-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.cta-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-card-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.cta-icon-group {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
}

.cta-icon-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    font-weight: bold;
}

.cta-main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-cards-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

@media (max-width: 768px) {
    .cta-main-section {
        padding: 40px 0;
    }

    .cta-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .cta-card-title {
        font-size: 1.2rem;
        padding-right: 60px;
    }

    .cta-main-image {
        height: 250px;
        margin-top: 30px;
    }

    .cta-icon-group {
        right: 15px;
    }

    .cta-clipboard-icon {
        right: 20px;
    }
}

.age-groups-section {
    background: linear-gradient(360deg, #f0edeb 80.7%, #ffffff 80.7%);
}

.age-group-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #374151;
}

.bullet-point {
    color: #642a73;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    font-weight: bold;
}

.form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 900px;
}
.header-section {
    background-color: #d9b8e5;
    color: white;
    padding: 2rem;
    border-radius: 12px 12px 0 0;
    text-align: center;
}
.section-title {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #642a73;
}
.form-section {
    padding: 2rem;
    border-bottom: 1px solid #e9ecef;
}
.form-section:last-child {
    border-bottom: none;
}
.employment-entry,
.education-entry,
.development-entry,
.reference-entry {
    background-color: #d9b8e5;
    border: 1px solid #642a73;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.radio-group {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.file-upload-area {
    border: 2px dashed #642a73;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    background-color: #d9b8e5;
}
.certification-text {
    background-color: #d9b8e5;
    border: 1px solid #642a73;
    border-radius: 8px;
    padding: 1.5rem;
    font-size: 0.9rem;
    color: #495057;
}

/* Contact Section Styles with cn prefix */

.cn-contact-section {
    min-height: 100vh;
    background-color: white;
    color: #642a73;
    padding: 5rem 1.5rem;
}

.cn-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Styles */
.cn-header {
    margin-bottom: 4rem;
}

.cn-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #642a73;
    text-balance: balance;
}

@media (min-width: 768px) {
    .cn-title {
        font-size: 6rem;
    }
}

.cn-divider {
    width: 4rem;
    height: 2px;
    background-color: #642a73;
}

/* Main Content */
.cn-main-content {
    margin-bottom: 5rem;
}

.cn-left-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Contact Info */
.cn-section-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #6c757d;
}

.cn-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cn-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cn-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #495057;
    flex-shrink: 0;
}

.cn-contact-link {
    color: #212529;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.cn-contact-link:hover {
    opacity: 0.8;
    color: #642a73;
}

.cn-contact-text {
    color: #212529;
}

/* Social Media */
.cn-social-title {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #6c757d;
}

.cn-social-links {
    display: flex;
    gap: 1.5rem;
}

.cn-social-link {
    color: #6c757d;
    font-size: 1.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.cn-social-link:hover {
    opacity: 0.8;
    color: #642a73;
}

/* Form Styles */
.cn-form-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
}

.cn-form-body {
    padding: 2rem;
}

.cn-form-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #212529;
}

.cn-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cn-input,
.cn-textarea {
    background-color: white;
    border: 1px solid #e9ecef;
    color: #212529;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.cn-input::placeholder,
.cn-textarea::placeholder {
    color: #6c757d;
}

.cn-input:focus,
.cn-textarea:focus {
    border-color: #642a73;
    box-shadow: 0 0 0 0.2rem rgba(73, 80, 87, 0.25);
    outline: none;
}

.cn-textarea {
    resize: none;
    min-height: 150px;
}

.cn-submit-btn {
    background-color: #495057;
    border: 1px solid #495057;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.cn-submit-btn:hover {
    background-color: #495057;
    border-color: #495057;
    opacity: 0.9;
}

/* Map Section */
.cn-map-section {
    width: 100%;
}

.cn-map-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #6c757d;
}

.cn-map-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    overflow: hidden;
}

.cn-map-placeholder {
    width: 100%;
    height: 24rem;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cn-map-content {
    text-align: center;
    color: #6c757d;
}

.cn-map-icon {
    font-size: 3rem;
    color: #495057;
    margin-bottom: 1rem;
    display: block;
}

.cn-map-text {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.cn-map-address {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .cn-main-content {
        gap: 3rem;
    }

    .cn-left-column {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .cn-contact-section {
        padding: 3rem 1rem;
    }

    .cn-title {
        font-size: 3rem;
    }

    .cn-header {
        margin-bottom: 3rem;
    }

    .cn-main-content {
        margin-bottom: 3rem;
    }
}
