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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #222831;
    background-color: #ffffff;
    padding-bottom: 100px; /* Space for cookie banner */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

a {
    color: #00C2C7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #222831;
}

/* Grid Systems */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E7E5E4 0%, #ffffff 100%);
    padding: 3rem 0 4rem;
    overflow: hidden;
}

.hero-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.logo {
    width: 60px;
    height: 60px;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222831;
    margin: 0;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    color: #222831;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #00C2C7;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 194, 199, 0.3);
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #009ca0;
    text-decoration: none;
}

/* What We Do Section */
.what-we-do {
    background-color: #ffffff;
}

.service-card {
    text-align: center;
    padding: 2rem;
    border: 2px solid #E7E5E4;
    border-radius: 12px;
    background-color: #ffffff;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    color: #222831;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
}

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

.feature-list {
    space-y: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #222831;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    margin: 0;
}

/* Photo Placeholders */
.photo-placeholder {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.content-image:hover {
    transform: scale(1.02);
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background-color: #E7E5E4;
    border-radius: 12px;
}

.step-number {
    background-color: #00C2C7;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #222831;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    margin: 0;
}

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

.service-detail {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-svg {
    width: 40px;
    height: 40px;
}

.service-detail h3 {
    color: #222831;
    margin: 0;
}

.service-detail p {
    color: #666;
    margin: 0;
}

/* Benefits Section */
.benefits {
    background-color: #ffffff;
}

.grid-2 .benefits-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-content .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefits-content .benefit-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.benefits-content .benefit-item h4 {
    color: #222831;
    margin-bottom: 0.5rem;
}

.benefits-content .benefit-item p {
    color: #666;
    margin: 0;
}

/* Tools Section */
.tools {
    background-color: #E7E5E4;
}

.tool-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.tool-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tool-icon {
    width: 50px;
    height: 50px;
}

.tool-card h3 {
    color: #222831;
    margin: 0;
}

.tool-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.tool-button {
    background-color: #222831;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.tool-button:hover {
    background-color: #333;
    text-decoration: none;
}

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

.product-card {
    background-color: white;
    border: 2px solid #E7E5E4;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: border-color 0.3s ease;
}

.product-card.featured {
    border-color: #00C2C7;
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00C2C7;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-header {
    margin-bottom: 2rem;
}

.product-header h3 {
    color: #222831;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #00C2C7;
}

.product-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #E7E5E4;
}

.product-features li:last-child {
    border-bottom: none;
}

.purchase-button {
    background-color: #00C2C7;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
    transition: background-color 0.3s ease;
}

.purchase-button:hover {
    background-color: #009ca0;
    text-decoration: none;
}

/* Specifications Section */
.specifications {
    background-color: #E7E5E4;
}

.spec-group h4 {
    color: #222831;
    margin-bottom: 1rem;
    border-bottom: 2px solid #00C2C7;
    padding-bottom: 0.5rem;
}

.spec-list {
    list-style: none;
}

.spec-list li {
    padding: 0.75rem 0;
    color: #666;
    border-bottom: 1px solid #ccc;
}

.spec-list li:last-child {
    border-bottom: none;
}

/* Documentation Section */
.documentation {
    background-color: #ffffff;
}

.doc-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid #E7E5E4;
    border-radius: 8px;
    background-color: #ffffff;
}

.doc-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.doc-card h4 {
    color: #222831;
    margin-bottom: 1rem;
}

.doc-card p {
    color: #666;
    margin: 0;
}

/* Coverage Section */
.coverage {
    background-color: #E7E5E4;
}

.coverage-content h3 {
    color: #222831;
    margin-bottom: 1.5rem;
}

.coverage-content p {
    color: #666;
    margin-bottom: 2rem;
}

.coverage-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.coverage-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 6px;
}

.coverage-feature svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.coverage-feature span {
    color: #666;
    font-weight: 500;
}

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

.contact .section-title {
    color: white;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #00C2C7;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #E7E5E4;
}

.contact-details address {
    font-style: normal;
    color: #E7E5E4;
}

/* Contact Form */
.contact-form {
    background-color: #E7E5E4;
    padding: 2rem;
    border-radius: 12px;
}

.contact-form h3 {
    color: #222831;
    margin-bottom: 1.5rem;
    text-align: center;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group label {
    color: #222831;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00C2C7;
}

.submit-button {
    background-color: #00C2C7;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #009ca0;
}

/* Footer */
.footer {
    background-color: #222831;
    color: #E7E5E4;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E7E5E4;
}

.footer-description {
    color: #999;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: #00C2C7;
    margin-bottom: 1rem;
}

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

.footer-section li {
    padding: 0.25rem 0;
    color: #999;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps {
        gap: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .benefits-content .benefit-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .tool-card,
    .service-card,
    .product-card {
        padding: 1.5rem;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .content-image {
        height: 200px;
    }
}