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

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

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: #4a4a5c;
    color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    text-align: center;
    margin: 20px;
}

.cookie-content h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cookie-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cookie-btn {
    background: #e8e859;
    color: #4a4a5c;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-btn:hover {
    background: #d4d44a;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 2rem;
}

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

.nav a:hover {
    color: #e8e859;
}

/* Hero Section */
.hero {
    background: white;
    padding: 0;
    margin-bottom: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    background: #4a4a5c;
    color: white;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

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

.cta-btn {
    background: #e8e859;
    color: #4a4a5c;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    align-self: flex-start;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    background: #d4d44a;
    transform: translateY(-2px);
}

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

.services h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #333;
}

.services-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid #e0e0e0;
    padding: 30px 0;
}

.service-row:last-child {
    border-bottom: none;
}

.service-name h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.service-description p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us Section */
.why-us {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-us h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.benefit-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* How We Work Section */
.how-we-work {
    padding: 80px 0;
    background: white;
}

.work-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.work-text {
    background: #4a4a5c;
    color: white;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.work-text ol {
    list-style: none;
    counter-reset: item;
}

.work-text li {
    counter-increment: item;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
}

.work-text li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: #e8e859;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: #4a4a5c;
    padding: 50px;
    border-radius: 10px;
}

.contact-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus {
    border-bottom-color: #e8e859;
}

.submit-btn {
    width: 100%;
    background: #e8e859;
    color: #4a4a5c;
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

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

/* Footer */
.footer {
    background: white;
    padding: 40px 0 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-left p {
    font-size: 0.9rem;
    color: #666;
}

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

.footer-right a {
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #e8e859;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text, .work-text {
        padding: 40px 30px;
    }
    
    .hero-text h2, .work-text h2 {
        font-size: 2rem;
    }
    
    .services h2, .why-us h2 {
        font-size: 2rem;
    }
    
    .service-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .work-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-form {
        margin: 0 20px;
        padding: 40px 30px;
    }
    
    .cookie-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .cookie-content h3 {
        font-size: 2rem;
    }
}