/* 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: #FEFEFE;
}

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

/* Typography */
h1, h2, h3, h4 {
    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;
    color: #666;
}

/* Header */
.header {
    background-color: #F5F2E8;
    padding: 1rem 0;
    border-bottom: 1px solid #E8E2D4;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    color: #6B7BFF;
    font-size: 1.8rem;
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: #6B7BFF;
    color: white;
}

.btn-primary:hover {
    background-color: #5A6AEF;
}

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

.btn-secondary:hover {
    background-color: #6B7BFF;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5F2E8 0%, #E8E2D4 100%);
    padding: 60px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    order: 1;
}

.hero-image {
    order: 2;
}

.hero-image svg {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 12px;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* About Section */
.about {
    padding: 80px 0;
    text-align: center;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.about-grid.centered {
    justify-items: center;
}

.about-item {
    text-align: center;
    padding: 2rem;
    background: #F5F2E8;
    border-radius: 12px;
}

.about-icon {
    margin-bottom: 1rem;
}

.about-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    text-align: center;
}

.features-content.centered {
    background: linear-gradient(135deg, #F5F2E8 0%, #E8E2D4 100%);
}

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

.features-text h2 {
    color: #333;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
}

.feature svg {
    flex-shrink: 0;
}

.feature span {
    color: #666;
}

/* Products Section */
.products {
    padding: 80px 0;
    text-align: center;
}

.product-grid.centered {
    justify-items: center;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.product-image svg {
    width: 100%;
    height: 100%;
    border-radius: 12px 12px 0 0;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.product-content p {
    margin-bottom: 1rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6B7BFF;
    margin-bottom: 1.5rem;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    text-align: center;
}

.why-choose-content.centered {
    background: linear-gradient(135deg, #F5F2E8 0%, #E8E2D4 100%);
}

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

.why-choose-text h2 {
    color: #333;
    margin-bottom: 2rem;
}

.reason {
    margin-bottom: 2rem;
}

.reason h4 {
    color: #6B7BFF;
    margin-bottom: 0.5rem;
}

.reason p {
    color: #666;
}

/* Process Section */
.process {
    padding: 80px 0;
    text-align: center;
}

.process-steps.centered {
    justify-items: center;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: #F5F2E8;
    border-radius: 12px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #6B7BFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #333;
    margin-bottom: 1rem;
}

.step p {
    color: #666;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    text-align: center;
}

.testimonial-grid.centered {
    background: linear-gradient(135deg, #F5F2E8 0%, #E8E2D4 100%);
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #333;
}

.testimonial-author strong {
    color: #6B7BFF;
    display: block;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    text-align: center;
}

.newsletter-content.centered {
    background: #6B7BFF;
    color: white;
}

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

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: 2px solid white;
}

/* Contacts Section */
.contacts {
    padding: 80px 0;
}

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

.contact-item {
    text-align: center;
    padding: 2rem;
    background: #F5F2E8;
    border-radius: 12px;
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-item p {
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section:first-child {
    max-width: 300px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section li {
    color: #ccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #6B7BFF;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero .container,
    .features-content,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: none;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}