@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FFFFFF;
}

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

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

.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: #BFD7D5;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #2C2C2C;
}

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

.nav-link {
    text-decoration: none;
    color: #2C2C2C;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #BFD7D5;
    border-bottom: 2px solid #BFD7D5;
}

main {
    margin-top: 70px;
}

.hero {
    position: relative;
    height: 600px;
    background-image: url('https://images.pexels.com/photos/1350789/pexels-photo-1350789.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    max-width: 700px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background-color: #BFD7D5;
    color: #2C2C2C;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #A8C2C0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(191, 215, 213, 0.4);
}

.btn-full {
    width: 100%;
}

.intro-section {
    padding: 80px 0;
    background-color: #F9F9F9;
}

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

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 24px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4A4A4A;
}

.products-section {
    padding: 80px 0;
}

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

.product-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

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

.product-content {
    padding: 24px;
}

.product-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2C2C2C;
}

.product-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-link {
    color: #BFD7D5;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: #2C2C2C;
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(191,215,213,0.1) 0%, rgba(255,255,255,1) 100%);
}

.contact-form-wrapper {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    color: #666666;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #BFD7D5;
    box-shadow: 0 0 0 3px rgba(191,215,213,0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.stats-section {
    padding: 80px 0;
    background-color: #F9F9F9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #BFD7D5;
    margin-bottom: 8px;
}

.stat-label {
    color: #4A4A4A;
    font-size: 16px;
}

.footer {
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-description {
    color: #CCCCCC;
    font-size: 14px;
    line-height: 1.6;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

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

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

.footer-contact li {
    color: #CCCCCC;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #999999;
    font-size: 14px;
}

.page-hero {
    position: relative;
    height: 400px;
    background-image: url('https://images.pexels.com/photos/1457842/pexels-photo-1457842.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-small {
    height: 300px;
    background-image: url('https://images.pexels.com/photos/7688336/pexels-photo-7688336.jpeg?auto=compress&cs=tinysrgb&w=1600');
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.page-title {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    font-size: 56px;
    font-weight: 700;
    text-align: center;
}

.content-section {
    padding: 80px 0;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: #2C2C2C;
    margin-bottom: 24px;
}

.body-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 0;
    background-color: #F9F9F9;
}

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

.value-card {
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(191,215,213,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: #BFD7D5;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 12px;
}

.value-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

.feature-section {
    padding: 80px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

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

.feature-title {
    font-size: 32px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 24px;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(191,215,213,0.2) 0%, rgba(255,255,255,1) 100%);
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: #4A4A4A;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

.section-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 32px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: rgba(191,215,213,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: #BFD7D5;
}

.contact-info-title {
    font-size: 18px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 4px;
}

.contact-info-text {
    font-size: 16px;
    color: #4A4A4A;
    line-height: 1.5;
}

.contact-info-hours {
    font-size: 14px;
    color: #666666;
    margin-top: 4px;
}

.map-wrapper {
    margin-top: 40px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.contact-form-card {
    background-color: #F9F9F9;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 40px;
}

.info-box {
    background-color: rgba(191,215,213,0.2);
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.info-box-title {
    font-size: 18px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 8px;
}

.info-box-text {
    font-size: 14px;
    color: #4A4A4A;
    line-height: 1.6;
}

.legal-hero {
    padding: 80px 0 40px;
    background-color: #F9F9F9;
}

.legal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.legal-icon {
    width: 64px;
    height: 64px;
    color: #BFD7D5;
}

.legal-title {
    font-size: 48px;
    font-weight: 700;
    color: #2C2C2C;
}

.legal-content {
    padding: 40px 0 80px;
}

.legal-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 48px;
}

.legal-date {
    font-size: 14px;
    color: #666666;
    margin-bottom: 32px;
}

.legal-section {
    margin-bottom: 32px;
}

.legal-heading {
    font-size: 24px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 16px;
}

.legal-subheading {
    font-size: 20px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 12px;
    margin-top: 20px;
}

.legal-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 16px;
}

.legal-list {
    list-style-position: inside;
    margin: 16px 0;
    padding-left: 20px;
}

.legal-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 8px;
}

.legal-link {
    color: #BFD7D5;
    text-decoration: underline;
}

.legal-link:hover {
    color: #A8C2C0;
}

.info-box-legal {
    margin-top: 40px;
}

.info-box-contact {
    margin-top: 12px;
}

.info-box-contact p {
    font-size: 14px;
    color: #4A4A4A;
    margin-bottom: 4px;
}

.cookie-notice {
    background-color: rgba(191,215,213,0.2);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.cookie-notice-text {
    font-size: 18px;
    line-height: 1.8;
    color: #2C2C2C;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .page-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .legal-card {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .page-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }
}
