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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    scrollbar-width: thin;
    scrollbar-color: #cccccc #f0f0f0;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #f0f0f0;
}

body::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #999999;
}

/* Top Bar */
.top-bar {
    background-color: #ffffff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo img {
    height: 45px;
}

.phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.phone i {
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('img/torino-hero-BHGBUL3e.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
    margin-top: 75px;
}

.hero-content {
    max-width: 1000px;
    color: #ffffff;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 18px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar {
        padding: 12px 20px;
    }

    .logo img {
        height: 35px;
    }

    .phone {
        font-size: 14px;
    }

    .phone-number {
        display: none;
    }

    .hero {
        margin-top: 63px;
        padding: 60px 20px 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 15px 30px;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Problems Section */
.problems-section {
    padding: 80px 40px;
    background-color: #ffffff;
    text-align: center;
}

.problems-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.problem-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.problem-icon.red {
    background-color: rgba(255, 59, 92, 0.1);
    color: #ff3b5c;
}

.problem-icon.orange {
    background-color: rgba(255, 138, 0, 0.1);
    color: #ff8a00;
}

.problem-icon.yellow {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.problem-icon i {
    font-size: 36px;
}

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.problem-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* Problems Section Responsive */
@media (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 600px;
    }

    .problems-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .problem-card {
        padding: 35px 25px;
    }
}

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

    .problems-section h2 {
        font-size: 1.8rem;
    }

    .problem-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .problems-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

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

    .problem-icon i {
        font-size: 32px;
    }

    .problem-card h3 {
        font-size: 1.1rem;
    }

    .problem-card p {
        font-size: 0.95rem;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.how-it-works-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
}

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

.step-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* How It Works Section Responsive */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 800px;
    }

    .how-it-works-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .step-card {
        padding: 35px 25px;
    }
}

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

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .how-it-works-section h2 {
        font-size: 1.8rem;
    }

    .step-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .step-card h3 {
        font-size: 1.1rem;
    }

    .step-card p {
        font-size: 0.95rem;
    }
}

/* Results Section */
.results-section {
    padding: 80px 40px;
    background-color: #ffffff;
    text-align: center;
}

.results-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.results-subtitle {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 30px;
}

.result-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    transition: all 0.3s ease;
}

.result-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.result-header {
    padding: 20px 25px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.result-header.blue {
    background-color: #0066ff;
}

.result-header.purple {
    background-color: #9333ea;
}

.result-header.green {
    background-color: #10b981;
}

.result-header i {
    font-size: 24px;
}

.result-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.result-header p {
    font-size: 0.9rem;
    opacity: 0.95;
}

.price-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 25px;
}

.price-box {
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-box.before {
    background-color: #fef2f2;
}

.price-box.after {
    background-color: #f0fdf4;
}

.price-box .label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666666;
}

.price-box .price {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-box .price.red {
    color: #dc2626;
}

.price-box .price.green {
    color: #10b981;
}

.price-box .annual {
    font-size: 0.85rem;
    color: #666666;
}

.gain-badge {
    background-color: #d1fae5;
    color: #065f46;
    padding: 12px 20px;
    margin: 0 25px 25px;
    text-align: center;
    font-weight: 600;
    border-radius: 6px;
    font-size: 0.95rem;
}

.result-details {
    list-style: none;
    padding: 0 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.result-details li {
    font-size: 0.95rem;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.result-details i {
    color: #666666;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.result-cta {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 15px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.result-cta:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.results-disclaimer {
    font-size: 0.9rem;
    color: #999999;
    font-style: italic;
    margin-top: 20px;
}

/* Results Section Responsive */
@media (max-width: 1024px) {
    .results-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .results-section h2 {
        font-size: 2rem;
    }

    .results-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

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

    .results-section h2 {
        font-size: 1.8rem;
    }

    .price-comparison {
        gap: 10px;
        padding: 20px;
    }

    .price-box {
        padding: 15px 10px;
    }

    .price-box .price {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .results-section h2 {
        font-size: 1.5rem;
    }

    .results-subtitle {
        font-size: 0.95rem;
    }

    .result-header {
        padding: 15px 20px;
    }

    .result-header h3 {
        font-size: 1rem;
    }

    .result-header p {
        font-size: 0.85rem;
    }

    .price-box .price {
        font-size: 1.2rem;
    }

    .gain-badge {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .result-details {
        padding: 0 20px 20px;
        gap: 10px;
    }

    .result-details li {
        font-size: 0.9rem;
    }

    .result-cta {
        width: calc(100% - 40px);
        margin: 0 20px 20px;
        font-size: 0.95rem;
    }
}

/* Services Section */
.services-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.service-icon i {
    font-size: 36px;
    color: #000000;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* Services Section Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 800px;
    }

    .services-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .service-card {
        padding: 35px 25px;
    }
}

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

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .services-section h2 {
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .services-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

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

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

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 40px;
    background-color: #1a1a1a;
    text-align: center;
}

.guarantee-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
}

.guarantee-card {
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 16px;
    padding: 50px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon i {
    font-size: 80px;
    color: #ffc107;
}

.guarantee-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.guarantee-card h3 i {
    color: #ff6b9d;
    font-size: 1.4rem;
}

.guarantee-text {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.guarantee-subtitle {
    font-size: 1.15rem;
    color: #d0d0d0;
    font-weight: 500;
    margin-bottom: 30px;
}

.guarantee-badge {
    display: inline-block;
    background-color: #ffc107;
    color: #000000;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
}

/* Guarantee Section Responsive */
@media (max-width: 768px) {
    .guarantee-section {
        padding: 60px 20px;
    }

    .guarantee-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .guarantee-card {
        padding: 40px 30px;
    }

    .guarantee-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .guarantee-icon i {
        font-size: 60px;
    }

    .guarantee-card h3 {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 8px;
    }

    .guarantee-text {
        font-size: 1rem;
    }

    .guarantee-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .guarantee-section h2 {
        font-size: 1.6rem;
    }

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

    .guarantee-card h3 {
        font-size: 1.15rem;
    }

    .guarantee-text {
        font-size: 0.95rem;
    }

    .guarantee-subtitle {
        font-size: 0.95rem;
    }

    .guarantee-badge {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

/* Calculator Section */
.calculator-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.calculator-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.calculator-section h2 i {
    color: #ff6b6b;
}

.calculator-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 50px 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #000000;
}

.calculator-submit {
    width: 100%;
    padding: 18px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.calculator-submit:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.calculator-result {
    margin-top: 40px;
    padding: 30px;
    background-color: #d1fae5;
    border: 2px solid #10b981;
    border-radius: 12px;
    text-align: center;
}

.calculator-result h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 20px;
}

.result-main {
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.6;
}

.highlight-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #10b981;
}

.result-comparison {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 20px;
}

.result-footer {
    font-size: 1rem;
    color: #0066ff;
    font-weight: 600;
}

/* Calculator Section Responsive */
@media (max-width: 768px) {
    .calculator-section {
        padding: 60px 20px;
    }

    .calculator-section h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
        flex-direction: column;
        gap: 10px;
    }

    .calculator-card {
        padding: 40px 30px;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group select,
    .form-group input {
        padding: 12px;
        font-size: 0.95rem;
    }

    .calculator-submit {
        padding: 15px;
        font-size: 1rem;
    }

    .calculator-result h3 {
        font-size: 1.4rem;
    }

    .result-main {
        font-size: 1rem;
    }

    .highlight-price {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .calculator-section h2 {
        font-size: 1.5rem;
    }

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

    .calculator-result {
        padding: 25px 20px;
    }

    .calculator-result h3 {
        font-size: 1.2rem;
    }

    .result-main {
        font-size: 0.95rem;
    }

    .highlight-price {
        font-size: 1.3rem;
    }

    .result-comparison {
        font-size: 1rem;
    }

    .result-footer {
        font-size: 0.9rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 40px;
    background-color: #ffffff;
    text-align: center;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background-color: #ffffff;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: #f8f9fa;
}

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

.faq-answer p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

/* FAQ Section Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px 20px;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 20px 20px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-section h2 {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 18px 18px;
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 18px 18px;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 40px;
    background-color: #2a2a2a;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 40px;
}

.cta-main-button {
    background-color: #ffffff;
    color: #000000;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 20px 50px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 50px;
}

.cta-main-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d0d0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #ffffff;
}

.contact-item i {
    font-size: 1.1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    max-width: 450px;
    width: 100%;
    position: relative;
    animation: slideUp 0.3s ease;
    margin: auto;
}

.modal-large {
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #666666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: #f0f0f0;
    color: #000000;
}

.modal-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.modal-form-group {
    margin-bottom: 15px;
}

.modal-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 6px;
}

.modal-form-group input,
.modal-form-group select,
.modal-form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.modal-form-group input:focus,
.modal-form-group select:focus,
.modal-form-group textarea:focus {
    outline: none;
    border-color: #000000;
}

.modal-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.modal-cancel,
.modal-submit {
    flex: 1;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-cancel {
    background-color: #f0f0f0;
    color: #000000;
}

.modal-cancel:hover {
    background-color: #e0e0e0;
}

.modal-submit {
    background-color: #000000;
    color: #ffffff;
}

.modal-submit:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.modal-footer {
    font-size: 0.75rem;
    color: #666666;
    text-align: center;
    margin: 0;
}

/* Privacy Modal */
.privacy-content {
    text-align: left;
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 10px;
}

.privacy-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
    margin-top: 15px;
    margin-bottom: 8px;
}

.privacy-content h4:first-child {
    margin-top: 0;
}

.privacy-content p {
    font-size: 0.75rem;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 10px;
}

.privacy-content ul {
    font-size: 0.75rem;
    color: #374151;
    line-height: 1.5;
    margin: 8px 0 12px 18px;
    padding-left: 0;
}

.privacy-content li {
    margin-bottom: 5px;
}

.privacy-date {
    font-size: 0.75rem;
    color: #000000;
    margin-top: 15px;
    margin-bottom: 12px;
}

.privacy-footer {
    font-size: 0.7rem;
    color: #666666;
    font-style: italic;
    margin-top: 12px;
    margin-bottom: 0;
}

/* Custom scrollbar for modal content */
.modal-content::-webkit-scrollbar,
.privacy-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track,
.privacy-content::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.modal-content::-webkit-scrollbar-thumb,
.privacy-content::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover,
.privacy-content::-webkit-scrollbar-thumb:hover {
    background: #999999;
}

/* Firefox */
.modal-content,
.privacy-content {
    scrollbar-width: thin;
    scrollbar-color: #cccccc #f0f0f0;
}

/* CTA Section Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-main-button {
        font-size: 1.1rem;
        padding: 18px 40px;
    }

    .cta-contact-info {
        gap: 25px;
    }

    .contact-item {
        font-size: 0.95rem;
    }

    .modal-content {
        padding: 20px;
        max-width: 90%;
    }

    .modal-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
    }

    .cta-main-button {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 20px;
    }

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

    .modal-content h3 {
        font-size: 1.1rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-large {
        max-width: 95%;
    }
}

/* Footer */
.footer {
    background-color: #1a2332;
    color: #b0b8c3;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #b0b8c3;
    line-height: 1.6;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: #b0b8c3;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
}

.footer-contact li {
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid #2a3544;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #8892a0;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 50px 20px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        gap: 30px;
    }
}
