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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Button styles */
.btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, #e0602b 0%, #e6a23c 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    background-color: white;
    color: #333;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    border: 1px solid #ddd;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #1a1a1a;
    color: white;
}

.logo a {
    font-size: 1.2rem;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 1.5rem;
}

.main-nav ul li a:hover {
    color: #e0602b;
}

/* Hero Section */
.hero {
    background: linear-gradient(90deg, #e0602b 0%, #e6a23c 100%);
    color: white;
    padding: 3rem 5%;
}

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

.hero-text {
    flex: 1;
    padding-right: 2rem;
}

.hero-description {
    margin: 1.5rem 0;
    font-size: 1.1rem;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 4rem 5%;
    background-color: #fff;
}

.feature-intro {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.feature-icon {
    display: inline-block;
    margin-bottom: 1rem;
}

.feature-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: left;
}

.feature-image {
    margin: 3rem 0;
}

.feature-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 4rem 5%;
    background-color: #1a1a1a;
    color: white;
}

.service-intro {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}

.service-intro h2 {
    color: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 25px;
    height: 25px;
}

.orange {
    background-color: #e0602b;
}

.green {
    background-color: #4caf50;
}

.blue {
    background-color: #2196f3;
}

.purple {
    background-color: #9c27b0;
}

.cyan {
    background-color: #00bcd4;
}

.red {
    background-color: #f44336;
}

/* Why Choose Us Section */
.why-us {
    padding: 4rem 5%;
    background-color: #f5f5f5;
}

.why-us-intro {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.benefit-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon img {
    width: 25px;
    height: 25px;
}

.why-us .btn-primary {
    display: block;
    max-width: 200px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 4rem 5%;
    background: linear-gradient(90deg, #e0602b 0%, #e6a23c 100%);
    color: white;
}

.contact h2, .contact h3 {
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-image {
    position: absolute;
    right: 0;
    bottom: -4rem;
    width: 300px;
}

.contact-image img {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 2rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    margin: 0 1rem;
    color: #ccc;
}

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

.copyright {
    color: #888;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    text-align: center;
}

.cookie-icon {
    width: 50px;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.close-modal:hover {
    color: #e0602b;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-image {
        display: none;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .service-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .header {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .main-nav ul li {
        margin: 0 0.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero,
    .features,
    .services,
    .why-us,
    .contact {
        padding: 2rem 1rem;
    }
    
    .feature-description {
        text-align: center;
    }
}