* {
    box-sizing: border-box;
}

:root {
    --primary-color: #F1C40F;
    --secondary-color: #2D3436;
    --bg-light: #FFFBEB;
    --text-main: #2D3436;
    --text-light: #636E72;
    --white: #FFFFFF;
    --accent-soft: #FEF9E7;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 1023px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
}

@media (max-width: 767px) {
    h1 { font-size: 1.3rem; }
    h2 { font-size: 1.2rem; }
    .site-name { font-size: 0.9rem !important; }
}

.site-header {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
}

.site-logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.site-name {
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav .menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.main-nav .menu-list a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    transition: color 0.3s;
}

.main-nav .menu-list a:hover {
    color: var(--primary-color);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: 0.3s;
}

@media (max-width: 1100px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 1rem;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    .main-nav.active {
        display: block;
    }
    .main-nav .menu-list {
        flex-direction: column;
        gap: 1rem;
    }
}

.hero-section {
    padding: 6rem 0;
    min-height: 800px;
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color) !important;
    border: none;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-btn:hover {
    background-color: #e1b70d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.4);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 1rem 2.5rem;
}

.mockup-container {
    position: relative;
    background: var(--white);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mockup-img {
    width: 100%;
    border-radius: 10px;
    height: 400px;
    object-fit: cover;
}

.age-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.age-labels span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
}

.scroll-down-arrow {
    position: absolute;
    bottom: 1.7rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    margin-top: 2rem;
}

@media (max-width: 767px){
    .scroll-down-arrow {
        bottom: 20px;
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

.section-header {
    margin-bottom: 4rem;
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.how-it-works-section {
    padding: 5rem 0;
    background: var(--accent-soft);
}

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--secondary-color);
}

.benefits-section {
    padding: 5rem 0;
}

.benefit-card {
    margin-bottom: 2rem;
}

.benefit-inner {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s;
}

.benefit-inner:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.benefit-inner i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.timeline-section {
    padding: 5rem 0;
    background: var(--secondary-color);
    color: var(--white);
}

.timeline-section h2 {
    color: var(--white);
}

.timeline-item {
    text-align: center;
    margin-bottom: 2rem;
}

.timeline-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.timeline-caption {
    font-weight: 700;
    font-size: 1.2rem;
}

.cta-block {
    margin-top: 3rem;
}

.reviews-section {
    padding: 5rem 0;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    height: 100%;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.review-author {
    display: block;
    font-weight: 700;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.about-section {
    padding: 5rem 0;
    background: var(--accent-soft);
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contacts-section {
    padding: 5rem 0;
}

.contact-list {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.contact-list i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.3rem;
}

.contact-list a {
    color: var(--text-main);
    text-decoration: none;
}

.cta-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.site-footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.footer-nav {
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 1rem;
}

.modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow-y: auto;
    max-height: 90vh;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .hero-section { padding: 3rem 0; }
    .mockup-img { height: 250px; }
    .footer-nav a { display: block; margin: 0.5rem 0; }
    .modal-content { padding: 2rem 1rem; }
}/* Main container padding */
.rightsFieldUnit {
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
}

/* Moderate sizes for headers */
.rightsFieldUnit h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.rightsFieldUnit h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.3;
}

.rightsFieldUnit h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.rightsFieldUnit h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.rightsFieldUnit h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Paragraph styling */
.rightsFieldUnit p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333; /* Standard dark grey text */
}

/* List styling */
.rightsFieldUnit ul {
    margin-bottom: 15px;
    padding-left: 20px;
    list-style-type: disc;
}

.rightsFieldUnit li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* Remove margin from the last element in the container */
.rightsFieldUnit > *:last-child {
    margin-bottom: 0;
}


body, html{
    overflow-x: hidden;
}

@media (max-width: 575px){
    .contact-list li{
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;

        i{
            margin: 0;
        }

    }
        .footer-logo{
            align-items: center;
            justify-content: center;
            text-align: center;
        }
}