/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'HelveticaLTStd Roman', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-svg {
    height: 40px;
    width: auto;
}

.nav-logo h2 {
    font-family: 'Buckwheat';
    color: #1C402E;
    font-weight: 400;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(28, 64, 46, 0.3);
    position: relative;
    filter: contrast(1.1) brightness(0.95);
}

.nav-logo h2::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(28, 64, 46, 0.1);
    transform: translate(1px, 1px);
    z-index: -1;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ED9121;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ED9121;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: -2;
}


.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: 'Airwaves Regular', 'HelveticaLTStd Roman', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    color: #ED9121;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #ED9121;
    color: white;
    box-shadow: 0 10px 30px rgba(237, 145, 33, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(237, 145, 33, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-secondary:hover {
    background: #333;
    color: white;
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-image {
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 500px;
    display: block;
    margin: 0 auto;
}

.floating-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.floating-card p {
    color: #666;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #333;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) rotate(45deg) translateY(0); }
    40% { transform: translateX(-50%) rotate(45deg) translateY(-10px); }
    60% { transform: translateX(-50%) rotate(45deg) translateY(-5px); }
}

/* Vision Text */
.vision-text {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: #1C402E;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-family: 'Airwaves Regular', 'HelveticaLTStd Roman', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1C402E;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #ED9121;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Project Description Section */
.project-description {
    padding: 100px 0;
    background: white;
}

.project-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.project-text {
    max-width: none;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #19330E;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.project-stats .stat-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.project-stats .stat-item:hover {
    border-color: #ED9121;
    transform: translateY(-5px);
}

.project-stats .stat-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ED9121;
    margin-bottom: 0.5rem;
}

.project-stats .stat-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.innovation-card {
    background: #1C402E;
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(25, 51, 14, 0.2);
}

.innovation-icon {
    width: 80px;
    height: 80px;
    background: rgba(237, 145, 33, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ED9121;
}

.innovation-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.innovation-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}


/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    min-height: 600px;
}

.about-text h2 {
    font-family: 'Airwaves Regular', 'HelveticaLTStd Roman', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1C402E;
}

.mission-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #1C402E;
    margin-bottom: 2rem;
    line-height: 1.6;
    border-left: 4px solid #ED9121;
    padding-left: 1.5rem;
    background: rgba(237, 145, 33, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.header-cell {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    color: #1C402E;
    font-size: 0.8rem;
    border-right: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    min-height: 80px;
    line-height: 1.3;
}

.header-cell:first-child {
    text-align: left;
    justify-content: flex-start;
}

.header-cell:nth-child(2),
.header-cell:nth-child(3),
.header-cell:nth-child(4) {
    text-align: center;
    justify-content: center;
}

.header-cell:last-child {
    border-right: none;
}

.highlight-header {
    background: #faf7f0;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.table-row:last-child {
    border-bottom: none;
}

.feature-label {
    padding: 1.5rem 1rem;
    font-weight: 500;
    color: #1C402E;
    border-right: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    background: white;
    font-size: 0.95rem;
    min-height: 80px;
    text-align: left;
}

.symbol-cell {
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    min-height: 80px;
}

.symbol-cell:last-child {
    border-right: none;
}

.highlight-cell {
    background: #faf7f0;
}

.brand-name,
.brand-text {
    font-family: 'Buckwheat';
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(28, 64, 46, 0.3);
    position: relative;
    filter: contrast(1.1) brightness(0.95);
}

.company-text-navbar {
    height: 1.8rem;
    width: auto;
    filter: contrast(1.1) brightness(0.95);
}

.company-text-footer {
    height: 1.5rem;
    width: auto;
    filter: contrast(1.1) brightness(0.95);
}

.company-text-table {
    height: 1.2rem;
    width: 100%;
    filter: contrast(1.1) brightness(0.95);
    margin-bottom: 0.3rem;
    display: block;
}

.company-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sunscreens-text {
    font-size: 0.9rem;
    color: #1C402E;
    font-weight: 600;
    margin-top: 0.2rem;
}

.company-text-inline {
    height: 1.2rem;
    width: auto;
    filter: contrast(1.1) brightness(0.95);
    vertical-align: baseline;
    margin-left: 0.05rem;
    margin-right: 0.05rem;
    margin-bottom: -0.2rem;
}

.checkmark {
    width: 28px;
    height: 28px;
    background: #ED9121;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.4rem;
    margin: 0 auto;
}

.tilde {
    color: #1C402E;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto;
}

.asterisk {
    color: #ED9121;
    font-family: 'Buckwheat';
    font-weight: 400;
    text-transform: uppercase;
    vertical-align: super;
    font-size: 0.8em;
    margin-right: 0.2rem;
    line-height: 1;
}

.asterisk-text {
    vertical-align: baseline;
}

.asterisk-text-footer {
    vertical-align: baseline;
    color: #ED9121;
}

.table-footnote {
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-radius: 0 0 15px 15px;
}

.table-footnote p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Our Team Section */
.team {
    padding: 100px 0;
    background: white;
}

.team-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #ED9121;
    margin-bottom: 4rem;
    font-family: 'Airwaves Regular', 'HelveticaLTStd Roman', sans-serif;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    position: relative;
    background: #f8f9fa;
    border-right: 1px solid white;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px;
}

.team-member:last-child {
    border-right: none;
}

.team-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 1rem 0;
    position: relative;
    border: 6px solid #1C402E;
    background: #ED9121;
    box-shadow: inset 0 0 0 4px #ED9121;
}

.team-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    background: #ED9121;
    border-radius: 50px 50px 0 0;
    top: 0;
    left: 0;
    z-index: 1;
}

.team-icon::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 20px;
    background: repeating-linear-gradient(
        to bottom,
        #e2e8f0 0px,
        #e2e8f0 4px,
        transparent 4px,
        transparent 8px
    );
    z-index: 3;
}

.team-icon i {
    color: white;
    font-size: 2rem;
    z-index: 2;
    position: relative;
}

.team-content {
    padding: 2rem 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.member-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1C402E;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.member-role {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 1rem;
}

.member-description {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex: 1;
}

.member-background {
    text-align: left;
}

.background-item {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.background-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ED9121;
    font-weight: bold;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: white;
    color: #333;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: 'Airwaves Regular', 'HelveticaLTStd Roman', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    background: #ED9121;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-item i {
    width: 50px;
    height: 50px;
    background: #ED9121;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff6b6b;
}

/* Footer */
.footer {
    background: white;
    color: #333;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-svg {
    height: 30px;
    width: auto;
}

.footer-section h3 {
    font-family: 'Buckwheat';
    color: #1C402E;
    font-weight: 400;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(28, 64, 46, 0.3);
    position: relative;
    filter: contrast(1.1) brightness(0.95);
    margin-bottom: 1rem;
}

.footer-section h3::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(28, 64, 46, 0.1);
    transform: translate(1px, 1px);
    z-index: -1;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #666;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ED9121;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #ED9121;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        max-height: 400px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-visual {
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }
    
    .comparison-table {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 160px 80px 80px 80px;
        min-width: 400px;
        width: 100%;
    }
    
    .header-cell,
    .feature-label,
    .symbol-cell {
        padding: 0.8rem 0.4rem;
        min-height: 55px;
        font-size: 0.75rem;
        border-right: 1px solid #e2e8f0;
        border-bottom: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-cell:first-child,
    .feature-label:first-child {
        text-align: left;
        justify-content: flex-start;
    }
    
    .header-cell:last-child,
    .feature-label:last-child,
    .symbol-cell:last-child {
        border-right: none;
    }
    
    .feature-label {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .symbol-cell {
        padding: 0.8rem 0.2rem;
    }
    
    .header-cell {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .highlight-header,
    .highlight-cell {
        background: #faf7f0;
    }
    
    .table-footnote {
        border-radius: 0 0 15px 15px;
        margin: 0;
    }

    .project-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member {
        border-right: none;
        border-bottom: 1px solid white;
        min-height: auto;
    }

    .team-member:last-child {
        border-bottom: none;
    }

    .team-title {
        font-size: 2.5rem;
    }

    .team-icon {
        width: 70px;
        height: 70px;
    }

    .team-icon i {
        font-size: 1.5rem;
    }
}

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

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-image {
        max-height: 300px;
    }

    .team-title {
        font-size: 2rem;
    }

    .team-content {
        padding: 1.5rem 1rem;
    }

    .member-name {
        font-size: 1rem;
    }

    .member-description {
        font-size: 0.9rem;
    }

    .team-icon {
        width: 60px;
        height: 60px;
    }

    .team-icon i {
        font-size: 1.2rem;
    }

    .comparison-table {
        margin: 0;
        border-radius: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 140px 70px 70px 70px;
        min-width: 350px;
    }
    
    .header-cell,
    .feature-label,
    .symbol-cell {
        padding: 0.6rem 0.2rem;
        min-height: 45px;
        font-size: 0.65rem;
    }
    
    .feature-label {
        font-size: 0.6rem;
        line-height: 1.2;
    }
    
    .header-cell {
        font-size: 0.6rem;
        line-height: 1.1;
    }
    
    .symbol-cell {
        padding: 0.6rem 0.1rem;
    }
    
    .company-text-table {
        height: 1rem;
        width: 100%;
    }
    
    .sunscreens-text {
        font-size: 0.6rem;
    }
}

/* Smooth animations for scroll */
@media (prefers-reduced-motion: no-preference) {
    .feature-card,
    .stat-item {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease forwards;
    }

    .feature-card:nth-child(1) { animation-delay: 0.1s; }
    .feature-card:nth-child(2) { animation-delay: 0.2s; }
    .feature-card:nth-child(3) { animation-delay: 0.3s; }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
