* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

header h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.subtitle {
    font-size: 28px;
    margin-bottom: 15px;
    color: #666;
}

.title-decoration {
    font-size: 18px;
    color: #999;
    letter-spacing: 2px;
}

/* Hero Section */
.hero-section {
    padding: 60px 0 80px;
    text-align: center;
    background-color: #f9f9f9;
}

.hero-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.hero-text {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #555;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin-top: 40px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-header h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.service-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.service-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

.service-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* Footer Styles */
footer {
    background-color: #f5f5f5;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.copyright {
    font-size: 14px;
    color: #666;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
    padding: 20px 0;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cookie-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.cookie-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-accept-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cookie-accept-btn:hover {
    background-color: #333;
}

/* Hide cookie banner after acceptance */
.cookie-banner.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 22px;
    }

    .hero-image img {
        max-height: 350px;
    }

    .hero-text {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-image {
        height: 200px;
    }

    .service-header h3 {
        font-size: 24px;
    }

    .service-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 18px;
    }

    .title-decoration {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .hero-image {
        margin-bottom: 30px;
    }

    .hero-image img {
        max-height: 250px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-image {
        height: 180px;
    }

    .service-header h3 {
        font-size: 20px;
    }
}
