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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #ffa500;
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff8c00;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn.decline:hover {
    background: white;
    color: #1a1a2e;
}

.cookie-link {
    color: #ffa500;
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Header */
.header {
    background: #1a1a2e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    text-decoration: none;
}

.nav-brand h1 {
    color: #ffa500;
    font-size: 24px;
    font-weight: 700;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-image {
    flex: 0 0 400px;
}

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

.hero-text {
    flex: 1;
    color: white;
}

.hero-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    background: #1a1a2e;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
}

.cta-button:hover {
    background: #0f0f1a;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    background: #1a1a2e;
    padding: 80px 0;
    color: white;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffa500;
}

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

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

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffa500;
}

.service-item p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.services .cta-button {
    display: block;
    margin: 0 auto;
    background: #ffa500;
    color: #1a1a2e;
}

.services .cta-button:hover {
    background: #ff8c00;
}

/* About Section */
.about {
    background: #1a1a2e;
    padding: 80px 0;
    color: white;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.about-text {
    flex: 2;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffa500;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.about-advantages {
    flex: 1;
    background: rgba(255, 165, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.about-advantages h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffa500;
}

.advantage-item {
    margin-bottom: 20px;
}

.advantage-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.advantage-item p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

.about-image {
    margin-top: 40px;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

/* Testimonials Section */
.testimonials {
    background: #1a1a2e;
    padding: 80px 0;
    color: white;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 165, 0, 0.1);
    padding: 25px;
    border-radius: 10px;
}

.testimonial-image {
    flex: 0 0 80px;
}

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

.testimonial-content {
    flex: 1;
}

.stars {
    color: #ffa500;
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    opacity: 0.9;
}

.author {
    font-weight: 600;
    color: #ffa500;
}

.testimonials .cta-button {
    display: block;
    margin: 0 auto;
    background: #ffa500;
    color: #1a1a2e;
}

.testimonials .cta-button:hover {
    background: #ff8c00;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    padding: 80px 0;
}

.contact-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-image {
    flex: 0 0 400px;
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.contact-form-section {
    flex: 1;
    color: white;
}

.contact-form-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 10px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input,
form textarea {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

form input:focus,
form textarea:focus {
    outline: 2px solid #1a1a2e;
}

.submit-btn {
    background: #1a1a2e;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #0f0f1a;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a2e;
    padding: 40px 0 20px;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand h3 {
    color: #ffa500;
    font-size: 24px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

.footer-links a:hover {
    color: #ffa500;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-image {
        flex: none;
        width: 100%;
        max-width: 400px;
    }
    
    .hero-text h2 {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-advantages {
        order: -1;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-image {
        flex: none;
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-text h2 {
        font-size: 28px;
    }
    
    .services h2,
    .about-text h2,
    .testimonials h2,
    .contact-form-section h2 {
        font-size: 28px;
    }
    
    .hero-text p,
    .about-text p,
    .contact-form-section p {
        font-size: 14px;
    }
    
    .service-item h3 {
        font-size: 18px;
    }
    
    .service-item p {
        font-size: 13px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    form input,
    form textarea {
        padding: 12px;
        font-size: 14px;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item,
.testimonial-item,
.advantage-item {
    animation: fadeInUp 0.6s ease-out;
}

.about-text ul {
    margin-bottom: 24px;
}