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

/* Body Defaults */
body {
    background-color: #585858;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #f3f5f9;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scrollbar */
    transition: background-color 1s ease;
}

/* Header Layout */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    background-color: #585858;
    position: relative;
    min-height: 250px;
    z-index: 100; /* Keep header above all content */
}

/* Logo Container Styling */
.logo { }

/* Style the logo image itself */
.logo img {
    display: block;
    height: 110px;
    width: auto;
}

/* Menu Icon Styling */
.menu-icon {
    cursor: pointer;
    position: relative;
    z-index: 200;
}

/* Style the SVG image inside the menu-icon container */
.menu-icon img {
    display: block;
    width: 60px;
    height: auto;
    transition: transform 0.3s ease;
}

.menu-icon:hover img {
    transform: scale(1.1);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 200;
    margin-top: 10px;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 15px 20px;
    color: #151617;
    text-decoration: none;
    font-family: 'Golos Text', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #f8f8f8;
}

/* Horizontal Line Styling */
.header-line {
    position: absolute;
    right: 60px;
    left: 280px;
    bottom: 67px;
    height: 0;
    border: none;
    border-top: 2px solid #f3f5f9;
}

/* === Parallax Section Styles === */

.parallax-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #585858;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 80px 60px 40px 60px;
    box-sizing: border-box;
    min-height: calc(100vh - 190px); /* Account for header */
    /* NEW: Add extra space below to extend the gray area */
    margin-bottom: 500px;
}

/* Hero image containers with overlay text */
.hero-image-container {
    position: relative;
    width: 660px;
    max-width: calc(50% - 5px);
    transition: transform 0.7s ease-out;
    z-index: 2;
    cursor: pointer;
}

/* Desktop hover effect for hero images */
@media (min-width: 769px) {
    .hero-image-container:hover {
        transform: translateY(-8px);
    }
}

.image-left {
    transform: translateX(0);
}

.image-right {
    transform: translateX(0);
}

.parallax-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease-out, opacity 0.7s ease, filter 0.7s ease;
}

/* Content that will be revealed */
.parallax-background-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #f3f5f9;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    /* NEW: Add significant padding to push content down */
    padding-top: 60vh;
}

/* Force any direct h2 elements to use the correct styling */
.parallax-background-content h2,
.parallax-background-content .main-title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important; /* Regular */
    font-size: 30px !important;
    letter-spacing: 0.09em !important;
    margin-bottom: 20px !important;
    color: #f3f5f9 !important;
    text-align: center !important;
}

.parallax-background-content .yellow-line {
    border: none;
    border-top: 2px solid #e6c200;
    width: 380px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.parallax-background-content p {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.06em;
    max-width: 850px;
    color: #f3f5f9;
    margin-bottom: 10px;
}

.animated-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
    display: block; /* Ensure it's a block element */
    margin-top: 30px; /* Add space after the line */
}

/* When reveal is complete, adjust the section */
.reveal-complete {
    height: auto;
    min-height: 100vh;
}

/* === Responsive Styles for Hero Section === */

@media (max-width: 1300px) {
    .parallax-section {
        flex-direction: column;
        height: auto;
        min-height: 190vh;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        padding-top: 60px;
        padding-bottom: 60px;
        margin-bottom: 350px; /* Increased from 250px */
    }

    .hero-image-container {
        width: 100%;
        max-width: 660px;
    }

    /* Position the text at optimal spot for iPad */
    .parallax-background-content {
        padding-top: 150vh; /* Increased from 135vh */
    }
}

@media (max-width: 768px) {
    .parallax-section {
        padding-left: 0;
        padding-right: 0;
        padding-top: 40px;
        padding-bottom: 40px;
        overflow: hidden;
        margin-bottom: 250px;
        position: relative;
        /* Make the section much taller to accommodate the repositioned text */
        height: 210vh; /* Double the viewport height */
    }

    .hero-image-container {
        width: 105%;
        max-width: none;
        margin-left: 0;
        /* Position images at the top of the section */
        position: relative;
        z-index: 2;
    }

    /* Position the text at a specific distance from the top */
    .parallax-background-content {
        position: absolute;
        top: 150vh; /* Position the text 150% of viewport height from the top */
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        padding-top: 0; /* Remove padding-top */
        z-index: 1;
        /* Ensure it's centered horizontally */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .parallax-background-content h2 {
        font-size: 32px;
    }

    .parallax-background-content p {
        font-size: 18px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .hero-image-container {
        width: 130%;
    }

    .parallax-background-content {
        top: 140vh; /* Slightly closer on very small screens */
    }

    .site-header {
        min-height: 100px;
    }

    .logo img {
        height: 60px;
    }

    .menu-icon img {
        width: 40px;
    }

    .parallax-background-content h2 {
        font-size: 28px;
    }
}

/* Services Section Styles */
.services-section {
    padding: 80px 60px;
    background-color: #ffffff;
    transition: background-color 1s ease;
}

/* Services Header */
.services-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.services-header h2 {
    font-family: 'Golos Text', sans-serif;
    font-size: 20px;
    letter-spacing: 0.9em;
    color: #151617;
    margin-bottom: 15px;
}

.services-line {
    border: none;
    border-top: 2px solid #151617;
    width: 100%;
    margin: 0;
}

/* Services Container */
.services-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Service Items */
.service-item {
    position: relative;
    width: 660px;
    overflow: hidden;
    border-radius: 0px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    text-decoration: none;
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

/* Hover Effect */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease, background-color 0.4s ease;
    z-index: 2;
}

.hover-text {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.service-item:hover .service-overlay {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
}

.service-item:hover .hover-text {
    transform: translateY(0);
}

.service-item:hover .service-image {
    transform: scale(1.05);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Footer Section */
.footer-section {
    padding: 80px 60px 60px 60px;
    background-color: #ffffff;
    color: #151617;
}

.footer-header {
    margin-bottom: 140px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 200px;
}

.footer-main-title {
    font-family: 'Golos Text', sans-serif;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #151617;
    line-height: 1.2;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.footer-address-block {
    flex: 1;
}

.footer-address {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #151617;
    line-height: 1.4;
    margin-bottom: 0;
}

.footer-email {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #151617;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: block;
}

.footer-email:hover {
    opacity: 0.7;
}

.footer-company-block {
    flex: 1;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.footer-company-block:hover {
    opacity: 0.7;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #151617;
    line-height: 1.6;
}

.footer-button-block {
    flex: 0 0 auto;
}

.contact-button {
    font-family: 'Golos Text', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #151617;
    background-color: transparent;
    border: 1px solid #151617;
    padding: 15px 70px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-button:hover {
    background-color: #151617;
    color: #ffffff;
}

/* === LEGAL INFO PAGE STYLES === */

/* Body styles for legal page - completely white, no grey frame */
body.legal-page {
    background-color: #ffffff !important;
    color: #151617;
}

/* Header styles for legal page - reversed colors */
.legal-page .site-header {
    background-color: #ffffff;
}

.legal-page .header-line {
    border-top: 2px solid #151617;
}

/* Dropdown menu for legal page - dark background on light page */
.legal-page .dropdown-menu {
    background-color: #585858;
    border: 1px solid #404040;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.legal-page .dropdown-menu a {
    color: #f3f5f9;
    border-bottom: 1px solid #707070;
}

.legal-page .dropdown-menu a:hover {
    background-color: #707070;
}

/* Main Content Section - ensure it's full width white */
.main-content {
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: transparent;
    color: #151617;
}

.page-header {
    margin-bottom: 60px;
}

.page-title {
    font-family: 'Golos Text', sans-serif;
    font-size: 22px;
    color: #151617;
    margin-bottom: 15px;
    text-align: left;
}

.page-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    letter-spacing: 0.05em;
    font-weight: 300;
    color: #151617;
    max-width: none;
    margin-bottom: 40px;
    text-align: left;
}

.page-line {
    border: none;
    border-top: 2px solid #151617;
    width: 100%;
    margin: 0;
}

/* Collapsible Sections */
.legal-sections {
    margin-top: 60px;
}

.legal-section {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
}

.section-header {
    padding: 30px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.section-header:hover {
    background-color: #f8f8f8;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
}

/* Keep original section-title styling for legal page accordion headers */
.legal-sections .section-title {
    font-family: 'Golos Text', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #151617;
    margin: 0;
}

/* Keep original section-title styling for trademarks page accordion headers */
.pricing-accordions .section-header .section-title {
    font-family: 'Golos Text', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #151617;
    margin: 0;
}

.section-arrow {
    font-size: 24px;
    color: #ffd600;
    transition: transform 0.3s ease;
}

.section-content {
    padding: 0 0 30px 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.section-content.active {
    max-height: 5000px;
    opacity: 1;
    padding: 20px 0 40px 0;
}

.section-arrow.active {
    transform: rotate(180deg);
}

.legal-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #151617;
    margin-bottom: 15px;
}

.legal-text p {
    margin-bottom: 15px;
}

.legal-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 10px 0;
    color: #151617;
}

.legal-text ul {
    margin: 10px 0 10px 20px;
}

.legal-text li {
    margin-bottom: 5px;
}

/* Footer styles for legal page - ONLY the footer should be grey */
.legal-page .footer-section {
    background-color: #585858;
    color: #f3f5f9;
    padding: 80px 60px 60px 60px;
}

.legal-page .footer-header {
    margin-bottom: 140px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
}

.legal-page .footer-main-title {
    color: #f3f5f9;
}

.legal-page .footer-address,
.legal-page .footer-email {
    color: #f3f5f9;
}

.legal-page .footer-copyright {
    color: #f3f5f9; /* Keep copyright white */
}

.legal-page .footer-faq-link {
    color: #ffd600; /* Yellow for FAQ link */
    display: block;
    margin-bottom: 5px;
}

.legal-page .contact-button {
    color: #f3f5f9;
    border: 1px solid #f3f5f9;
}

.legal-page .contact-button:hover {
    background-color: #f3f5f9;
    color: #585858;
}

/* === TRADEMARK PAGE BANNER STYLES === */

/* Remove the header line for trademark page */
body.legal-page .header-line {
    display: none !important;
}

/* Make the header itself have the banner background */
body.legal-page .site-header {
    background-color: transparent !important;
    background-image: url('banner_trademark_registration.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    /* Keep the existing padding and height */
    padding: 40px 60px;
    min-height: 250px;
}

/* Remove the separate banner div - we don't need it anymore */
body.legal-page .trademark-banner {
    display: none !important;
}

/* === DESIGN PAGE BANNER STYLES === */

/* Design page banner with orange theme */
body.design-page .site-header {
    background-image: url('banner_design_registration.jpg') !important;
}

/* Design page color overrides - orange instead of yellow */
body.design-page .yellow-divider {
    border-top: 2px solid #f24c26;
}

body.design-page .tab-button.active {
    border-bottom: 3px solid #f24c26;
}

body.design-page .section-arrow {
    color: #f24c26;
}

body.design-page .add-ons h4 {
    color: #f24c26;
}

body.design-page .footer-faq-link {
    color: #f24c26;
}

/* Design page step button hover - darker grey */
body.design-page .step-button:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(68, 72, 81, 0.3);
    background-color: rgba(68, 72, 81, 0.1);
}

/* Design page pricing table borders - dark grey instead of yellow */
body.design-page .pricing-table {
    border: 2px solid #444851;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    body.legal-page .site-header {
        padding: 30px 20px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    body.legal-page .site-header {
        padding: 15px 20px;
        min-height: 150px;
    }
}

/* === TRADEMARKS PAGE STYLES === */

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    border-bottom: 2px solid #e0e0e0;
}

.tab-button {
    font-family: 'Golos Text', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #151617;
    background: none;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.tab-button:hover {
    background-color: #f8f8f8;
}

.tab-button.active {
    border-bottom: 3px solid #ffd600;
    color: #151617;
    font-weight: 500;
}

/* Tab Content */
.tab-content {
    min-height: 400px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Trademark Intro Tab */
.trademark-intro {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

/* How It Works Content Container - match the trademark-intro styling */
.how-it-works-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

/* UPDATED: All main headings now have consistent styling */
.trademark-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #151617;
    margin-bottom: 20px;
    line-height: 1.4;
    text-transform: uppercase;
}

/* UPDATED: Secondary headings and subtitles */
.trademark-subtitle {
    font-family: 'Golos Text', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #151617;
    margin-bottom: 30px;
}

/* Keep original section-title styling for accordion headers */
.section-header .section-title {
    font-family: 'Golos Text', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #151617;
    margin: 0;
}

/* UPDATED: All text blocks now have consistent styling */
.trademark-text p,
.step-content p,
.accordion-text p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: #151617;
    margin-bottom: 20px;
}

.accordion-text ul {
    margin: 10px 0 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: #151617;
}

.accordion-text li {
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: #151617;
}

.trademark-text {
    margin-bottom: 40px;
}

.trademark-text em {
    font-style: italic;
    color: #151617;
}

.yellow-divider {
    border: none;
    border-top: 2px solid #ffd600;
    width: 100%;
    margin: 60px 0;
}

/* How It Works Tab */
.steps-overview {
    display: flex;
    justify-content: flex-start; /* Changed from center to flex-start for left alignment */
    gap: 20px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.step-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 10px;
    min-width: 120px;
}

.step-button:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 200, 150, 0.3);
    background-color: rgba(0, 200, 150, 0.1);
}

.step-button img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.step-button span {
    font-family: 'Golos Text', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #151617;
    text-align: center;
    line-height: 1.2;
}

/* Detailed Steps */
.steps-detailed {
    margin-top: 80px;
}

.step-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.step-icon {
    flex: 0 0 100px;
    margin-right: 40px;
}

.step-icon img {
    width: 80px;
    height: 80px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-family: 'Golos Text', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #151617;
    margin-bottom: 15px;
}

/* Pricing Tab */
.pricing-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.pricing-tables {
    display: flex;
    gap: 40px;
    margin: 60px 0;
    justify-content: center;
}

.pricing-table {
    flex: 1;
    max-width: 450px;
    border: 2px solid #ffd600;
    border-radius: 0;
    padding: 40px 30px;
    background: #ffffff;
}

.table-title {
    font-family: 'Golos Text', sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #151617;
    text-align: center;
    margin-bottom: 30px;
}

.price-main {
    text-align: center;
    margin-bottom: 30px;
}

.price-label {
    font-family: 'Golos Text', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #151617;
    display: block;
    margin-bottom: 10px;
}

.price-value {
    font-family: 'Golos Text', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #151617;
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #151617;
    line-height: 1.4;
}

.service-list img {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.add-ons h4 {
    font-family: 'Golos Text', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #ffd600;
    margin-bottom: 15px;
}

.add-on-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-direction: column;
}

.add-on-name-price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    margin-bottom: 5px;
}

.add-on-name {
    font-family: 'Golos Text', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #151617;
    flex: 1;
}

.add-on-price {
    font-family: 'Golos Text', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #151617;
    text-align: right;
    flex-shrink: 0;
    margin-left: 20px;
}

.add-on-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 0;
    width: 100%;
}

.pricing-note {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 40px 0;
}

/* Pricing Accordions */
.pricing-accordions {
    margin-top: 80px;
}

.pricing-section {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
}

/* Accordion main headings - for smooth visual appearance slightly smaller and bold, though in the same heading hirarchy as TRADEMARK REGSITRATION*/
.pricing-accordions .section-header .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 450;
    letter-spacing: 0.1em;
    color: #151617;
    margin: 0;
    line-height: 1.3;
}

/* Accordion subheadings */
.accordion-subheading {
    font-family: 'Golos Text', sans-serif;
    font-size: 18px;
    font-weight: 550;
    letter-spacing: 0.05em;
    color: #151617;
    margin-bottom: 30px;
    margin-top: 10px;
}

.trademark-classes-grid {
    margin-top: 40px;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

/* CTA Sections */
.cta-section {
    text-align: center;
    margin: 80px 0;
}

.cta-button {
    font-family: 'Golos Text', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #151617;
    background-color: transparent;
    border: 2px solid #151617;
    padding: 20px 40px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #151617;
    color: #ffffff;
}

/* Responsive styles for legal page */
@media (max-width: 768px) {
    .main-content {
        padding: 60px 20px;
    }

    .page-title {
        font-size: 18px;
    }

    .page-subtitle {
        font-size: 18px;
    }
    .section-title {
        font-size: 16px;
    }

    /* Mobile footer adjustments for legal page */
    .legal-page .footer-section {
        padding: 60px 20px 100px 20px;
    }

    .legal-page .footer-header {
        margin-bottom: 80px;
        padding-top: 20px;
    }
}

/* Responsive Styles for Trademarks Page */
@media (max-width: 1024px) {
    .pricing-tables {
        flex-direction: column;
        align-items: center;
    }

    .pricing-table {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .tab-navigation {
        flex-direction: row;
        overflow-x: auto;
        gap: 0;
        margin-bottom: 40px;
    }

    .tab-button {
        font-size: 14px;
        padding: 12px 20px;
        min-width: 120px;
        flex-shrink: 0;
    }

    .trademark-main-title,
    .trademark-intro h1,
    .how-it-works-content h1,
    .pricing-content h1 {
        font-size: 24px;
        letter-spacing: 0.15em;
    }

    .trademark-subtitle,
    .how-it-works-content .trademark-subtitle,
    .pricing-content .trademark-subtitle {
        font-size: 18px;
    }

    .steps-overview {
        justify-content: center; /* Center on mobile for better balance */
        gap: 15px;
    }

    .step-button {
        min-width: 110px; /* Slightly bigger than current 100px */
        padding: 18px; /* Slightly bigger than current 15px */
    }

    .step-button img {
        width: 55px; /* Bigger than current 50px */
        height: 55px;
    }

    .step-button span {
        font-size: 12px; /* Bigger than current 11px */
    }

    .step-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }

    .step-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .pricing-tables {
        gap: 30px;
    }

    .pricing-table {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .tab-button {
        font-size: 12px;
        padding: 10px 15px;
        min-width: 100px;
    }

    .trademark-main-title,
    .trademark-intro h1,
    .how-it-works-content h1,
    .pricing-content h1 {
        font-size: 20px;
    }

    .step-button {
        min-width: 95px; /* Bigger than current 80px */
        padding: 15px; /* Bigger than current 10px */
    }

    .step-button img {
        width: 50px; /* Bigger than current 40px */
        height: 50px;
    }

    .step-button span {
        font-size: 11px; /* Bigger than current 10px */
    }
}

/* Responsive Styles for Services Section and Footer */
@media (max-width: 1300px) {
    .services-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .service-item {
        width: 100%;
        max-width: 660px;
    }
}

@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .footer-address-block,
    .footer-company-block,
    .footer-button-block {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }

    .footer-section {
        padding: 80px 20px 140px 20px;
    }

    .footer-header {
        margin-bottom: 120px;
        padding-top: 60px;
    }

    .services-header h2 {
        font-size: 18px;
    }

    .footer-main-title {
        font-size: 28px;
        letter-spacing: 0.3em;
    }

    .contact-button {
        font-size: 14px;
        padding: 12px 30px;
    }

    .footer-container {
        gap: 30px;
    }

    .footer-address {
        margin-bottom: 12px;
    }

    .menu-icon img {
        width: 60px;
    }

    .dropdown-menu {
        min-width: 300px;
        right: -10px;
    }

    .site-header {
        padding: 30px 20px;
        min-height: 150px;
    }

    .header-line {
        left: 140px;
        right: 20px;
        bottom: 38px;
    }

    .logo img {
        height: 90px;
    }
}

@media (max-width: 480px) {
    .footer-main-title {
        font-size: 24px;
        letter-spacing: 0.2em;
    }
}

/* === FAQ PAGE SPECIFIC STYLES === */

/* FAQ banner styling - follows about page pattern */
.faq-banner-header {
    position: relative;
    height: 250px;
    background-image: none;
}

.faq-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.faq-banner .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.faq-banner .banner-image:hover {
    transform: scale(1.02);
}

/* Ensure menu appears above banner */
.faq-banner-header .menu-icon {
    z-index: 200;
}

/* FAQ Question Styling - Different from main clusters */
.faq-question {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
}

.faq-question:last-child {
    border-bottom: none;
}

.question-header {
    padding: 20px 0; /* Smaller than cluster headers (30px) */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background-color: #fafbfc; /* Add warm beige background */
}

.question-header:hover {
    background-color: #e8e8e8; /* Darker beige on hover */
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
}

.question-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px; /* Smaller than cluster titles (18px) */
    font-weight: 500;
    letter-spacing: 0.08em; /* Less than cluster titles */
    color: #151617;
    margin: 0;
}

.question-arrow {
    font-size: 18px; /* Smaller than cluster arrows (24px) */
    color: #999; /* Different color from cluster arrows (#ffd600) */
    transition: transform 0.3s ease;
}

.question-content {
    padding: 0 0 20px 0; /* Smaller than cluster content */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.question-content.active {
    height: auto; /* Remove max-height constraint */
    opacity: 1;
    padding: 15px 0 25px 0;
}

.question-arrow.active {
    transform: rotate(180deg);
}

/* Fix for content being cut off by footer */
.legal-page .main-content {
    padding-bottom: 60px; /* Use padding instead of margin */
}

/* Remove height constraints for smoother expansion */
.legal-page .section-content.active {
    max-height: none; /* Remove constraint */
    height: auto;
}

.question-content.active {
    max-height: none; /* Remove constraint */
    height: auto;
}

/* FAQ banner responsive */
@media (max-width: 768px) {
    .faq-banner-header {
        height: 200px;
    }

    .question-header {
        padding: 15px 0;
    }

    .question-title {
        font-size: 15px;
    }

    /* Mobile spacing adjustments */
    .legal-page .main-content {
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .faq-banner-header {
        height: 150px;
    }

    .question-title {
        font-size: 17px;
        line-height: 1.4;
    }

    /* Smaller mobile spacing */
    .legal-page .main-content {
        padding-bottom: 30px;
    }
}

/* === FAQ & ABOUT EASYPICK COMBINED CTA SECTION === */

.bestofboth-cta-section {
    background: #ffffff;
    padding: 80px 60px;
    margin: 60px 0 0 0;
    border-top: 1px solid #e0e0e0;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: 'Golos Text', sans-serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: #151617;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 30px;
}

.cta-button {
    background: transparent;
    color: #151617;
    border: 2px solid #151617;
    padding: 20px 40px;
    border-radius: 0;
    font-family: 'Golos Text', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
}

.cta-button:hover {
    background-color: #151617;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 22, 23, 0.2);
}

.cta-note {
    margin-top: 30px;
}

.cta-note p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #999;
    font-style: italic;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .bestofboth-cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .cta-button {
        padding: 18px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
}

/* === TRADEMARK CLASSES GRID INSTRUCTIONS === */
/* Instructions */
.grid-instructions {
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    letter-spacing: 0,05em;
    color: #666;
    text-align: left;
}

/* Industry Clusters Grid */
.industry-clusters {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 30px;
}

.industry-cluster {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-cluster span {
    font-family: 'Golos Text', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #151617;
    line-height: 1.2;
    text-align: center;
}

/* Trademark Classes Grid */
.trademark-classes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.trademark-class {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    width: 100%;
    height: 120px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    overflow: hidden;
}

.trademark-class img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Hover and Active States */
.industry-cluster:hover,
.industry-cluster.active {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Disabled hover state - subtle effect when another industry is selected */
.industry-cluster.disabled-hover:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.industry-cluster.disabled-hover:hover span {
    color: #888;
}

.trademark-class:hover,
.trademark-class.active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Industry Color Themes */
.tech-ai { background: linear-gradient(135deg, #2425d3 0%, #afaaaa 100%); }
.sports-fitness { background: linear-gradient(135deg, #fa5f25 0%, #e8e033 100%); }
.health-pharma { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.beauty-wellness { background: linear-gradient(135deg, #f88788 0%, #b9e1af 100%); }
.food-drinks { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.kids-world { background: linear-gradient(135deg, #c2e352 0%, #ffaac6 100%); }
.games-play { background: linear-gradient(135deg, #3597b1 0%, #f1ef3b 100%); }
.pet-lovers { background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%); }
.fashion-shoes { background: linear-gradient(135deg, #8d1b37 0%, #69747d 100%); }
.jewelry-adorn { background: linear-gradient(135deg, #f8b91d 0%, #737373 100%); }
.interior-design { background: linear-gradient(135deg, #3a777a 0%, #fcb69f 100%); }
.kitchen-household { background: linear-gradient(135deg, #5057fa 0%, #e5d8cb 100%); }
.coaching-strategy { background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%); }
.books-education { background: linear-gradient(135deg, #22c1c3 0%, #c8c0b2 100%); }

/* Active state text color - only when the element itself is active or hovered AND no other industry is selected */
.industry-cluster.active span,
.industry-cluster:hover:not(.disabled-hover) span {
    color: #ffffff;
    font-weight: 500;
}

/* Reset button */
.reset-button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #151617;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Golos Text', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.reset-button:hover {
    background-color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .industry-clusters {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .trademark-classes {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .trademark-class {
        height: 100px;
    }
}

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

    .industry-clusters {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }

    .trademark-classes {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .industry-cluster {
        min-height: 55px;
        padding: 4px 4px;
    }

    .industry-cluster span {
        font-size: 12px;
    }

    .trademark-class {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .trademark-classes-container {
        padding: 10px;
    }

    .industry-clusters {
        grid-template-columns: repeat(2, 1fr);
    }

    .trademark-classes {
        grid-template-columns: repeat(2, 1fr);
    }

    .trademark-class {
        height: 100px;
    }
}
/* === CLICKABLE LINK STYLES === */

/* Base styles for all clickable links */
.clickable-link {
    cursor: pointer;
    color: #151617;
    text-decoration: underline;
    text-decoration-color: #888888; /* Gray underline */
    text-underline-offset: 2px; /* Better spacing */
    transition: text-decoration-color 0.2s ease;
}

/* Trademark-themed links */
.clickable-link.trademark-theme:hover {
    text-decoration-color: #ffd600; /* Yellow on hover */
}

/* Design-themed links */
.clickable-link.design-theme:hover {
    text-decoration-color: #f24c26; /* Orange-red on hover */
}

/* Semantic navigation for screen readers and AIs */
.semantic-nav {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* For debugging/testing - add 'debug' class to semantic-nav */
.semantic-nav.debug {
  position: static;
  width: auto;
  height: auto;
  font-size: 8px;
  opacity: 0.05;
  margin: 5px;
  padding: 5px;
  border: 1px solid #f0f0f0;
  background: #fafafa;
  color: #666;
}

/* Ensure semantic nav links are still functional for screen readers and AIs */
.semantic-nav a {
  color: inherit;
  text-decoration: none;
}

.semantic-nav h2, .semantic-nav h3 {
  font-size: inherit;
  margin: 0;
  font-weight: normal;
}

.semantic-nav ul, .semantic-nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.semantic-nav li {
  margin: 0;
  padding: 0;
}

.semantic-nav section {
  margin: 0;
  padding: 0;
}

.semantic-nav div {
  margin: 0;
  padding: 0;
}

/* === LANGUAGE SWITCHER STYLES === */
.language-switcher {
    position: absolute;
    top: 280px; 
    right: 60px; 
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    z-index: 100;
}

.lang-link {
    color: #999;
    text-decoration: none;
    padding: 2px 4px;
    transition: color 0.2s ease;
}

.lang-link.active {
    color: #666;
    font-weight: 500;
}

.lang-link:hover {
    color: #333;
}

.lang-separator {
    color: #ccc;
    margin: 0 3px;
}

/* === RESOURCES & PARTNERSHIPS SECTION === */
.resources-section {
    margin-top: 80px;
    padding: 60px 0;
    border-top: 0px solid #ffd600;
}

.resources-header {
    margin-bottom: 40px;
    text-align: center;
}

.resources-title {
    font-family: 'Golos Text', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #151617;
    margin-bottom: 15px;
}

.resources-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-link {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease;
    display: block;
}

.resource-link:hover {
    border-color: #ccc;
    transform: translateY(-1px);
}

.resource-title {
    font-family: 'Golos Text', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-align: center;
    color: #151617;
    margin-bottom: 15px;
    line-height: 1.3;
    text-decoration: underline;
    text-decoration-color: #ffd600;
    text-underline-offset: 8px;
}

.resource-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: #666;
    line-height: 1.4;
}

/* Mobile responsive adjustments for language switcher */
    @media (max-width: 768px) {
        .language-switcher {
            top: 220px; 
            right: 20px; 
            font-size: 11px;
        }

    .resources-section {
        padding: 40px 20px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .resource-link {
        padding: 16px;
    }

    .resources-title {
        font-size: 18px;
    }

    .resources-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        top: 180px; 
        right: 15px;
    }
}