/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #f5f2e8;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.contact-link {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #4a4a4a;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.contact-link:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #f5f2e8;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #4a4a4a;
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.hero-image {
    justify-self: end;
}

.image-placeholder {
    width: 500px;
    height: 400px;
    background-color: #ffffff;
    border: 2px dashed #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4a4a;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
}

/* Hero Image */
.hero-main-image {
    width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(26, 26, 26, 0.1);
}

/* Features Image */
.features-image-photo {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(26, 26, 26, 0.1);
}

/* Product Images */
.product-image-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

/* Why Choose Image */
.why-choose-image-photo {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(26, 26, 26, 0.1);
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.centered-content .section-header,
.centered-content .about-grid,
.centered-content .services-grid,
.centered-content .products-grid,
.centered-content .process-steps,
.centered-content .benefit-list {
    text-align: center;
}

.centered-content .features-content,
.centered-content .why-choose-content {
    text-align: left;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.5;
}

/* About Section */
.about {
    background-color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-item {
    text-align: center;
    padding: 32px;
    background-color: #f5f2e8;
    border-radius: 8px;
}

.about-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.about-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.about-item p {
    color: #4a4a4a;
    line-height: 1.5;
}

/* Services Section */
.services {
    background-color: #f5f2e8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.service-item {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.service-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.service-item p {
    color: #4a4a4a;
    line-height: 1.5;
}

/* Features Section */
.features {
    background-color: #ffffff;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
    line-height: 1.2;
}

.feature-item {
    margin-bottom: 32px;
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-item p {
    color: #4a4a4a;
    line-height: 1.5;
}

/* Products Section */
.products {
    background-color: #f5f2e8;
}

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

.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(26, 26, 26, 0.1);
}

.product-image .image-placeholder {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 0;
}

.product-content {
    padding: 24px;
}

.product-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.product-content p {
    color: #4a4a4a;
    line-height: 1.5;
    margin-bottom: 20px;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.product-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
}

/* Process Section */
.process {
    background-color: #ffffff;
}

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

.process-step {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 24px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.process-step p {
    color: #4a4a4a;
    line-height: 1.5;
}

/* Why Choose Section */
.why-choose {
    background-color: #f5f2e8;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
    line-height: 1.2;
}

.benefit-item {
    margin-bottom: 24px;
    padding: 16px;
    background-color: #ffffff;
    border-radius: 4px;
    line-height: 1.5;
}

.benefit-item strong {
    color: #1a1a1a;
}

/* Contact Section */
.contact {
    background-color: #ffffff;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 32px;
    background-color: #f5f2e8;
    border-radius: 8px;
}

.contact-icon {
    flex-shrink: 0;
    padding: 12px;
    background-color: #ffffff;
    border-radius: 50%;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-details a {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    color: #1a1a1a;
}

.contact-details p {
    color: #4a4a4a;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-brand .logo-section {
    margin-bottom: 16px;
}

.footer-brand .brand-name {
    color: #ffffff;
}

.footer-brand p {
    color: #cccccc;
    line-height: 1.5;
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    color: #cccccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text p {
    margin: 0;
    color: #cccccc;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

.cookie-accept:hover {
    background-color: #f5f2e8;
}

.cookie-decline {
    background-color: transparent;
    color: #cccccc;
    border: 1px solid #4a4a4a;
}

.cookie-decline:hover {
    background-color: #4a4a4a;
    color: #ffffff;
}

.cookie-reject {
    background-color: transparent;
    color: #cccccc;
    border: 1px solid #4a4a4a;
}

.cookie-reject:hover {
    background-color: #4a4a4a;
    color: #ffffff;
}

.cookie-customize {
    background-color: #4a4a4a;
    color: #ffffff;
    border: 1px solid #4a4a4a;
}

.cookie-customize:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.cookie-link {
    color: #cccccc;
    text-decoration: underline;
    font-size: 14px;
}

.cookie-link:hover {
    color: #ffffff;
}

/* Cookie Preferences */
.cookie-preferences {
    display: none;
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 24px;
    margin-top: 20px;
    border-radius: 8px;
    border: 1px solid #4a4a4a;
}

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

.cookie-preferences h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.cookie-category {
    margin-bottom: 16px;
    padding: 12px;
    background-color: #f5f2e8;
    border-radius: 4px;
}

.cookie-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.cookie-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.cookie-name {
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-description {
    font-size: 14px;
    color: #4a4a4a;
    margin-left: 24px;
}

.cookie-pref-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: flex-end;
}

.cookie-pref-actions .cookie-btn {
    padding: 8px 16px;
    min-width: auto;
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .image-placeholder {
        width: 100%;
        max-width: 400px;
    }
    
    .hero-main-image {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }
    
    .features-image-photo {
        width: 100%;
        max-width: 400px;
        height: 250px;
    }
    
    .why-choose-image-photo {
        width: 100%;
        max-width: 400px;
        height: 250px;
    }
    
    .features-content,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .about-grid,
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        gap: 40px;
        justify-content: center;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 16px;
    }
}