/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1E3A8A;
    color: white;
    padding: 16px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cookie-link {
    color: #93C5FD;
    text-decoration: underline;
}

.cookie-accept {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cookie-accept:hover {
    background: #E55A2E;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: #FF6B35;
    font-size: 24px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

.nav-links a:hover {
    color: #FF6B35;
}

/* Hero Section */
.hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-text h1 {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    color: #1E3A8A;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: #64748B;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #FF6B35;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #64748B;
    margin-top: 4px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35, #E55A2E);
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

.about-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 32px;
    line-height: 1.2;
}

.about-text p {
    font-size: 18px;
    color: #64748B;
    margin-bottom: 24px;
    line-height: 1.7;
}

.features {
    display: grid;
    gap: 32px;
    margin-top: 48px;
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    color: #FF6B35;
    margin-bottom: 8px;
}

.feature p {
    color: #64748B;
    font-size: 16px;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 60px;
}

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

.testimonial {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    color: #64748B;
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author strong {
    color: #1E3A8A;
    font-weight: 600;
    display: block;
}

.testimonial-author span {
    color: #94A3B8;
    font-size: 14px;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-text p {
    font-size: 18px;
    color: #64748B;
    margin-bottom: 40px;
    line-height: 1.7;
}

.guarantee {
    background: #F1F5F9;
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid #FF6B35;
}

.guarantee h3 {
    color: #1E3A8A;
    font-size: 20px;
    margin-bottom: 16px;
}

.guarantee ul {
    list-style: none;
    padding: 0;
}

.guarantee li {
    color: #64748B;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.guarantee li::before {
    content: "✓";
    color: #FF6B35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Form Styles */
.contact-form {
    background: #F8FAFC;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #1E3A8A;
    font-size: 28px;
    margin-bottom: 32px;
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: #64748B;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #FF6B35;
    text-decoration: underline;
}

.error-message {
    color: #EF4444;
    font-size: 14px;
    margin-top: 4px;
    display: block;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #FF6B35, #E55A2E);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-disclaimer {
    margin-top: 16px;
    font-size: 12px;
    color: #94A3B8;
    text-align: center;
    line-height: 1.4;
}

.form-disclaimer a {
    color: #FF6B35;
    text-decoration: underline;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: #FF6B35;
    margin-bottom: 16px;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94A3B8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 20px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .about-text h2,
    .contact-text h2,
    .testimonials h2 {
        font-size: 32px;
    }
}