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

:root {
    --primary-color: #D4AF37;
    --primary-dark: #b8941f;
    --secondary-color: #1a1a1a;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --danger-color: #f44336;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background-color: #888888;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #666666;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 92.6px;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 114.977px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-menu .btn-primary {
    margin-left: 20px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0 15px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero .btn-primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: #333;
}

.hero .btn-primary:hover {
    background-color: var(--primary-dark);
    color: #333;
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    background-color: var(--bg-light);
    padding-top: 120px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.stat-item:nth-child(4) .stat-number {
    font-size: 36px;
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
}

/* Transactions Section */
.transactions {
    background-color: var(--bg-light);
}

.transaction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.transaction-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.transaction-card.yes {
    border-left-color: var(--success-color);
}

.transaction-card.no {
    border-left-color: var(--danger-color);
}

.transaction-card h3 {
    margin-bottom: 25px;
    font-size: 20px;
}

.transaction-card.yes h3 {
    color: var(--success-color);
}

.transaction-card.no h3 {
    color: var(--danger-color);
}

.transaction-card ul {
    list-style: none;
}

.transaction-card li {
    padding: 10px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.transaction-card.yes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.transaction-card.no li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--danger-color);
    font-weight: bold;
}

/* How It Works */
.how-it-works {
    background-color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    position: relative;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Penalties Section */
.penalties {
    background: linear-gradient(135deg, #f5f5f5 0%, var(--bg-light) 100%);
}

.penalties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.penalty-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--secondary-color);
}

.penalty-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.penalty-description {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.penalties-note {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Why Us Section */
.why-us {
    background-color: var(--bg-light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.why-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
}

.why-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--primary-color);
}

.why-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Timeline Section */
.timeline {
    background-color: white;
}

.timeline-content {
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
}

.timeline-content p {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* FAQ Section */
.faq {
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 60px auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    padding: 25px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.faq-toggle:hover {
    background-color: #f5f5f5;
}

.faq-toggle h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 16px;
    text-align: left;
    flex: 1;
}

.faq-icon {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
    margin-left: 20px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
    padding: 0 !important;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px 25px !important;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 14px;
    margin: 0;
}

/* Integrations Section */
.integrations {
    background-color: white;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.integration-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.integration-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.integration-status {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background-color: var(--primary-color);
    color: #333;
}

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: #ccc;
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
}

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

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-bottom a {
    color: #999;
    text-decoration: none;
}

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

/* Legal Pages */
.legal-page {
    background-color: var(--bg-white);
    padding: 80px 0;
    min-height: 100vh;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 60px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .navbar .container {
        height: auto;
        padding: 19.84px 0;
    }

    .logo-img {
        height: 82.12725px;
    }

    .nav-menu {
        gap: 15px;
        font-size: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu .btn-primary {
        margin-left: 0;
    }

    .hero {
        padding: 45px 0;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 16px;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

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

    .services-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .why-card {
        padding: 25px 20px;
    }

    .step-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

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

    .penalty-amount {
        font-size: 28px;
    }

    .faq-toggle {
        padding: 20px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 !important;
        font-size: 14px;
        max-height: 0;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 15px 20px !important;
    }

    .legal-page h1 {
        font-size: 32px;
    }

    .legal-content h2 {
        font-size: 20px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .navbar {
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .navbar .container {
        flex-direction: column;
        height: auto;
        padding: 8px 0;
    }

    .nav-brand {
        margin-bottom: 2px;
        width: 100%;
        justify-content: center;
    }

    .logo-img {
        height: 78.201748px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        width: 100%;
        text-align: center;
        align-items: center;
        border-bottom: 1px solid #e0e0e0;
        z-index: 99;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a {
        display: block;
        padding: 12px 0;
    }

    .nav-menu .btn-primary {
        margin-left: 0;
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        border-bottom: none;
    }

    .hero {
        padding: 30px 0;
    }

    .hero-content h1 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 16px;
        width: 100%;
    }

    section {
        padding: 40px 0;
    }

    section h2 {
        font-size: 26px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .services-grid,
    .why-us-grid,
    .transactions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card,
    .why-card {
        padding: 20px 15px;
        text-align: center;
    }

    .service-icon {
        font-size: 32px;
    }

    .service-card h3,
    .why-card h3 {
        font-size: 18px;
    }

    .service-card p,
    .why-card p {
        font-size: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-item:nth-child(4) .stat-number {
        font-size: 48px;
    }

    .penalty-amount-mobile {
        font-size: 28px;
    }

    .stat-label {
        font-size: 15px;
    }

    .penalty-card {
        padding: 20px 15px;
    }

    .penalty-amount {
        font-size: 24px;
    }

    .penalty-label {
        font-size: 13px;
    }

    .step-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .step-number {
        font-size: 32px;
    }

    .step-card h3 {
        font-size: 16px;
    }

    .step-card p {
        font-size: 14px;
    }

    .faq-item {
        margin-bottom: 15px;
    }

    .faq-toggle {
        padding: 15px;
        font-size: 16px;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .faq-toggle h3 {
        font-size: 16px;
    }

    .faq-icon {
        flex-shrink: 0;
        margin-left: auto;
    }

    .faq-answer {
        padding: 0 !important;
        font-size: 15px;
        max-height: 0;
    }

    .faq-item.active .faq-answer {
        max-height: 600px;
        padding: 12px 15px !important;
    }

    .timeline-content {
        padding: 20px 15px;
    }

    .timeline-date {
        font-size: 14px;
    }

    .timeline-title {
        font-size: 16px;
    }

    .timeline-description {
        font-size: 13px;
    }

    .cta-section h2 {
        font-size: 22px;
    }

    .cta-section p {
        font-size: 14px;
    }

    .legal-page {
        padding: 40px 0;
    }

    .legal-page h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .last-updated {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .legal-content {
        padding: 0 12px;
    }

    .legal-content h2 {
        font-size: 18px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 14px;
    }

    .legal-content ul {
        margin-left: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 18px;
    }

    .footer-section a,
    .footer-section li {
        font-size: 13px;
    }

    .footer-bottom {
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .footer-bottom p {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .footer-bottom p:last-of-type {
        margin-top: 15px;
    }

    .footer-bottom > div {
        flex-direction: column;
        gap: 20px !important;
    }

    .footer-bottom > div > div {
        text-align: center !important;
        flex: 1 !important;
    }

    .footer-bottom > div > div:nth-child(2) {
        display: none;
    }
}
