:root {
    --primary-blue: #0000ff;
    --text-dark: #1e1e1e;
    --text-light: #ffffff;
    --background-dark: #000000;
    --background-light: #ffffff;
    --background-grey: #f5f5f7;
}

body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2em;
}

h2 {
    margin: 0px;
}

.main-header {
    background-color: var(--background-dark);
    color: var(--text-light);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 2rem;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 2rem;
}

.main-header .logo {
    font-size: 2rem;
    font-weight: 900;
    justify-self: start;
}

.main-header .logo a {
    
    color: #fff !important;
}

.header-nav {
    justify-self: center;
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.header-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: var(--primary-blue);
}

.header-right {
    justify-self: end;
}

.btn-phone {
    background-color: var(--primary-blue);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-phone:hover {
    background-color: #0066ff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 255, 0.3);
}

/* Mobile elements hidden on desktop */
.mobile-menu-toggle {
    display: none;
}

.mobile-phone-button {
    display: none;
}

.mobile-nav {
    display: none;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    border: 2px solid;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    display: inline-block;
}

.btn-light {
    background-color: var(--text-light);
    color: var(--text-dark);
    border-color: var(--text-light);
}
.btn-light:hover {
    background-color: transparent;
    color: var(--text-light);
}


.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}
.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}
.btn-outline-dark:hover {
    background-color: var(--text-dark);
    color: var(--text-light);
}

.hero {
    background-image: url('images/hero-image-desktop.webp');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: left;
    padding: 6rem 2rem;
}

.hero-content {
    width: 50%;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.hero .hero-buttons {
    justify-content: start;
}

.offer-details {
    color: var(--text-light);
    text-decoration: underline;
    font-size: 0.9rem;
}

.promo-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    background-color: #14274a;
    border-radius: 20px;
    padding: 0rem;
    margin: 6rem auto 3rem auto;
    max-width: 1400px;
}

.promo-image img {
    width: 100%;
    border-radius: 15px;
}

.promo-content {
    padding: 2rem;
    color: white;
}
.promo-content h2 {
    font-size: 3rem;
    font-weight: 900;
}

.promo-content p {
    margin-bottom: 3rem;
}

.content-image-section .btn-light {
    background-color: #000 !important;
    color: #fff !important;
}

.content-image-section p {
    margin-bottom: 3rem;
}

.variety .btn-light {
    background-color: #000 !important;
    color: #fff !important;
}

.wherever-you-go .btn-light {
    background-color: #000 !important;
    color: #fff !important;
}

.featured-channels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 2rem;
}

.channel-card {
    border-radius: 20px;
    padding: 1.5rem;
    background-color: var(--background-grey);
}
.channel-card.metallica img {
    background-color: #000;
}

.channel-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.channel-card h3 { margin-top: 0; }
.channel-card a { color: var(--text-dark); font-weight: 700; text-decoration: underline; }

.variety {
    text-align: center;
    padding: 3rem 2rem;
}
.variety h2 { font-size: 3rem; font-weight: 900; }
.variety > p { max-width: 600px; margin: 1rem auto 3rem; }

.variety-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}
.variety-card {
    background-color: var(--background-grey);
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
}
.variety-card h3 { margin-top: 1.5rem; }

.stars {
    text-align: center;
    padding: 3rem 2rem 6rem 2rem;
}
.stars h2 { font-size: 3rem; font-weight: 900; }
.stars > p { max-width: 600px; margin: 1rem auto 3rem; }

.stars-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.star-item {
    text-align: center;
}
.star-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}
.star-item span {
    font-size: 0.8rem;
    color: #666;
}
.star-item h3 {
    margin: 0.5rem 0 0;
}

.trending {
    background-color: var(--background-grey);
    padding: 6rem 2rem;
    text-align: center;
}
.trending h2 { font-size: 3rem; font-weight: 900; margin-bottom: 3rem; }

.trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.trending-card {
    background-color: var(--background-light);
    border-radius: 20px;
    text-align: left;
    padding: 1.5rem;
}
.trending-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
    aspect-ratio: 3 / 3;
    object-fit: cover;
}

.wherever-you-go {
    padding: 6rem 2rem;
    text-align: center;
}
.wherever-you-go h2 { font-size: 3rem; font-weight: 900; }
.wherever-you-go > p { margin-bottom: 3rem; }
.listening-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}
.option {
    background-color: var(--background-grey);
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
}
.option-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: start;
}
.icon-wrapper {
    background-color: white;
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
}
.option-content {
    text-align: left;
}
.option img { 
    height: 50px;
}

/* Footer Styles */
.main-footer {
    background-color: var(--background-dark);
    color: #aaa;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.legal-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--text-light);
}

.footer-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.footer-logo a {
    color: #fff !important;
}

.footer-copyright p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Responsive Styles */
@media (max-width: 768px) {
    .legal-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-bottom-section {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.need-help {
    
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-blue);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    font-weight: 700;
    cursor: pointer;
    width: 60px;
    height: 60px;
    /*display: flex;*/
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.variety-grid img {
    width:100%;
    border-radius : 10px;
}

.content-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    border-radius: 20px;
}

/* Basic Responsive */
@media (max-width: 992px) {
    .promo-content { max-width: 80%; text-align: center; }
    .promo-section.taylor { justify-content: center; }
    .variety-grid { grid-template-columns: 1fr 1fr; }
    .trending-grid, .listening-options, .featured-channels { grid-template-columns: 1fr; }
    
    .header-content {
        grid-template-columns: 1fr auto;
        gap: 1rem;
    }
    .header-nav { display: none; }
    .header-right { justify-self: end; }
}

@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero {
        background-image: url(images/hero-image-mobile.webp);
        padding: 10rem 2rem 4rem 2rem;
        display: flex;
        align-items: flex-end;
        min-height: 100vh;
    }
    
    .hero-content {
        width: 100%;
        text-align: center;
    }
    
    .hero h1 { 
        font-size: 2.5rem; 
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .hero .hero-buttons {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    /* General Typography */
    h2 { font-size:     1.6rem !important; }
    .promo-content h2 { font-size: 2.5rem !important;}
    
    /* Grid Layouts */
    .variety-grid { grid-template-columns: 1fr; }
    .trending-grid { grid-template-columns: 1fr; }
    .listening-options { grid-template-columns: 1fr; }
    .featured-channels { grid-template-columns: 1fr; }
    .content-image-section { 
        grid-template-columns: none !important;
        gap: 3rem;
        padding: 3rem 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .content-image-section .content-box {
        order: 2;
    }
    
    .content-image-section .image-box {
        order: 1;
    }
    
    /* Promo Section */
    .promo-section {
        grid-template-columns: 1fr;
        margin: 5rem 1rem 2rem 1rem;
        text-align: center;
    }
    
    .promo-content {
        padding: 3rem 2rem;
        max-width: 100%;
    }
    
    /* Section Padding */
    .variety { padding: 2rem 1rem; }
    .stars { padding: 2rem 1rem 4rem 1rem; }
    .trending { padding: 4rem 1rem; }
    .wherever-you-go { padding: 4rem 2rem; }
    
    /* Cards and Options */
    .variety-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .option {
        padding: 1.5rem;
        text-align: center;
    }
    
    .option-icons {
        justify-content: left;
        margin-bottom: 1.5rem;
    }
    
    .icon-wrapper {
        background-color: white;
        border-radius: 15px;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        width: 50px;
    }
    
    .option img {
        height: 40px;
    }
    
    /* Channel Cards */
    .channel-card {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    /* Stars Grid */
    .stars-grid {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    /* Buttons */
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        margin-top: 2rem;
        text-align: center;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Hero Buttons */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Header Mobile */
    .main-header {
        padding: 1rem 2rem 1.5rem 2rem;
    }
    
    .header-content {
        padding: 0 1rem;
        grid-template-columns: auto 1fr auto;
        gap: 0rem;
    }
    
    .main-header .logo {
        font-size: 1.5rem;
    }
    
    .header-nav {
        display: none;
    }
    
    .btn-phone {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        gap: 4px;
    }
    
    .hamburger-line {
        width: 25px;
        height: 3px;
        background-color: var(--text-light);
        transition: 0.3s;
    }
    
    .mobile-nav {
        display: none;
        background: var(--background-dark);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem 0;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .mobile-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .mobile-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-nav a {
        display: block;
        color: var(--text-light);
        text-decoration: none;
        padding: 1rem 2rem;
        font-weight: 600;
        transition: background-color 0.3s ease;
    }
    
    .mobile-nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--primary-blue);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px);
    }
    
    .mobile-phone-button {
        display: block;
        padding: 0rem;
        border-top: none !important;
    }
    
    .btn-phone-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background-color: var(--primary-blue);
        color: var(--text-light);
        text-decoration: none;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        width: 100%;
        box-sizing: border-box;
        transition: background-color 0.3s ease;
    }
    
    .btn-phone-mobile:hover {
        background-color: #0066ff;
    }
}

.content-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0rem auto;
}

.content-box h2 {
    font-size: 3rem;
    font-weight: 900;
}

.image-box img {
    width: 100%;
    border-radius: 15px;
}

/* About Page Specific Styles - New Design */
.about-hero-new {
    background: var(--background-light);
    padding: 6rem 2rem 6rem 2rem;
    border-bottom: 1px solid #e5e5e7;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: flex-start;
}

.hero-text h1 {
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.hero-description {
    padding-top: 2rem;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.mission-section-new {
    background: var(--background-grey);
    padding: 6rem 2rem;
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.mission-image img {
    width: 100%;
    border-radius: 20px;
    height: 500px;
    object-fit: cover;
}

.mission-content h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0 0 3rem 0;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    background: var(--text-dark);
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-get-started:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.values-section-new {
    background: var(--background-light);
    padding: 8rem 2rem;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.values-container h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 6rem 0;
    letter-spacing: -0.02em;
}

.values-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
}

.value-item {
    padding: 2rem 1rem;
}

.value-item .value-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    display: block;
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
    opacity: 0.8;
    margin: 0;
}

.technology-section {
    background: var(--background-grey);
    padding: 8rem 2rem;
}

.tech-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.tech-content h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
}

.tech-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0 0 3rem 0;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.feature-icon {
    font-size: 1.5rem;
}

.tech-image img {
    width: 100%;
    border-radius: 20px;
    height: 400px;
    object-fit: cover;
}

.team-section-new {
    background: var(--background-light);
    padding: 8rem 2rem;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.team-container h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 6rem 0;
    letter-spacing: -0.02em;
}

.team-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    text-align: left;
}

.team-member-new {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.member-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
}

.member-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
    opacity: 0.8;
    margin: 0;
}

.final-cta-new {
    background: var(--background-dark);
    padding: 6rem 2rem 3rem 2rem;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-light);
    line-height: 1.2;
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
}

.cta-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-light);
    opacity: 0.8;
    margin: 0 0 3rem 0;
}

.cta-buttons-new {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-new {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--text-light);
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-primary-new:hover {
    background: #0066ff;
    transform: translateY(-2px);
}

.btn-secondary-new {
    display: inline-block;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border: 2px solid var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary-new:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Responsive styles for new About page design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .mission-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mission-content h2,
    .values-container h2,
    .tech-content h2,
    .team-container h2,
    .cta-container h2 {
        font-size: 2.2rem;
    }
    
    .values-grid-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tech-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .team-grid-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .team-member-new {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .cta-buttons-new {
        flex-direction: column;
        align-items: center;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: var(--background-light);
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 1px solid #e5e5e7;
}

.contact-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.contact-hero p {
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin: 0;
}

.contact-info-section {
    background: var(--background-grey);
    padding: 6rem 2rem;
}

.contact-info-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.contact-details p {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin: 0.25rem 0;
}

.contact-form-section {
    background: var(--background-light);
    padding: 6rem 2rem;
}

.form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 4rem 0;
    letter-spacing: -0.02em;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.5rem;
    border: 2px solid #e5e5e7;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--background-light);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.submit-btn {
    background: var(--text-dark);
    color: var(--text-light);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Contact Page Responsive Styles */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 3rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-container h2 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
}

/* Legal Pages Styles (Terms & Privacy) */
.legal-hero {
    background: var(--background-light);
    padding: 6rem 2rem 4rem 2rem;
    text-align: center;
    border-bottom: 1px solid #e5e5e7;
}

.legal-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.legal-hero p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.6;
    margin: 0;
}

.legal-content-section {
    background: var(--background-light);
    padding: 6rem 2rem;
}

.legal-content-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 3rem 0 1rem 0;
    line-height: 1.3;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}

.legal-content ul {
    margin: 0 0 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0.5rem 0;
}

.legal-content strong {
    font-weight: 600;
}

/* Legal Pages Responsive Styles */
@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2.5rem;
    }
    
    .legal-hero p {
        font-size: 1rem;
    }
    
    .legal-content h2 {
        font-size: 1.8rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
    
    .final-cta-new {
        padding: 5rem 2rem 2rem 2rem;
    }
}