* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    padding: 20px;
}

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

h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.age-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Fixed 6 columns for desktop */
    gap: 20px;
    justify-items: center;
}

.age-card {
    text-decoration: none;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 200px; /* Reduced from 300px */
}

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

.image-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.age-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 70px; /* Reduced from 80px */
    height: 70px; /* Reduced from 80px */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.age {
    font-size: 1.1rem;
    line-height: 1;
}

.unit {
    font-size: 0.75rem;
    margin-top: 2px;
}

/* Badge Colors */
.purple {
    background-color: #9b59b6;
}

.blue {
    background-color: #3498db;
}

.green {
    background-color: #2ecc71;
}

.pink {
    background-color: #e91e63;
}

.orange {
    background-color: #e67e22;
}

.navy {
    background-color: #34495e;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .age-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .age-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .age-badge {
        width: 60px;
        height: 60px;
    }

    .age {
        font-size: 1rem;
    }

    .unit {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .age-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 10px;
    }

    h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
}

/* Social Proof Section Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
}

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

.feature-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item:nth-child(1) .feature-icon {
    background: #FF6B6B;
}

.feature-item:nth-child(2) .feature-icon {
    background: #FFB800;
}

.feature-item:nth-child(3) .feature-icon {
    background: #FF4D6D;
}

.feature-item:nth-child(4) .feature-icon {
    background: #9B6B9B;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-icon svg path {
    fill: #fff;
}

.feature-content {
    text-align: left;
}

.feature-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #232323;
    margin-bottom: 2px;
    letter-spacing: -0.2px;
}

.feature-content p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    max-width: 150px;
}

@media (max-width: 991px) {
    .feature-grid {
        flex-direction: column;
        gap: 25px;
        padding: 15px 0;
    }

    .feature-item {
        width: 100%;
        justify-content: flex-start;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .feature-content p {
        max-width: none;
    }
}
