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

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

/* Centered content sections */
.centered-content {
    text-align: center;
}

.centered-content .container > * {
    text-align: center;
}

.centered-content .features-grid,
.centered-content .categories-grid,
.centered-content .steps-grid,
.centered-content .products-grid,
.centered-content .benefits-content,
.centered-content .testimonials-grid {
    text-align: center;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: #2c3e50;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #008B8B;
    text-decoration: none;
}

a:hover {
    color: #006666;
    text-decoration: underline;
}

/* Header */
.header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-section a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

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

.brand-name {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B9D, #E55A87);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E55A87, #CC4E75);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
    text-decoration: none;
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, #008B8B, #006B6B);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #006B6B, #005555);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 139, 139, 0.4);
    text-decoration: none;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #008B8B;
    border: 2px solid #008B8B;
}

.btn-outline:hover {
    background: #008B8B;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF6B9D 0%, #008B8B 50%, #FFD700 100%);
    color: white;
    padding: 80px 0;
}

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

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: black;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: black;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-photo {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Sections */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: white;
}

/* Features Section */
.features h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.feature-icon {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Categories Section */
.categories {
    background: white;
}

.categories h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

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

.category-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid #e9ecef;
}

.category-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.category-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: #666;
    font-size: 0.9rem;
}

/* How It Works */
.how-it-works h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFC700);
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

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

.step p {
    color: #666;
    line-height: 1.8;
}

/* Products Section */
.products {
    background: white;
}

.products h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e9ecef;
    position: relative;
}

.product-card.featured {
    background: linear-gradient(135deg, #FF6B9D, #E55A87);
    color: white;
    border-color: #FF6B9D;
    transform: scale(1.05);
}

.product-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #2c3e50;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.product-card.featured h3 {
    color: white;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B9D;
    margin-bottom: 1.5rem;
}

.product-card.featured .price {
    color: white;
}

.price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
}

.product-card.featured .price span {
    color: rgba(255, 255, 255, 0.8);
}

.product-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.product-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}

.product-card.featured li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.product-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #008B8B;
    font-weight: bold;
}

.product-card.featured li::before {
    color: #FFD700;
}

/* Benefits Section */
.benefits h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    border-left: 4px solid #FF6B9D;
}

.benefit-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    background: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

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

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #008B8B;
    position: relative;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial cite {
    color: #008B8B;
    font-weight: 600;
    font-style: normal;
}

/* Getting Started */
.getting-started {
    background: linear-gradient(135deg, #008B8B, #006B6B);
    color: white;
    text-align: center;
}

.getting-started h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.getting-started p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contacts */
.contacts h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

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

.contact-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.contact-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.contact-item p {
    color: #666;
    font-size: 1.1rem;
}

.contact-item a {
    color: #008B8B;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer .logo-section {
    margin-bottom: 1.5rem;
}

.footer .logo-icon {
    width: 40px;
    height: 40px;
}

.footer .brand-name {
    color: white;
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .categories-grid,
    .steps-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 200px;
    }
    
    .hero-image-photo {
        height: 250px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .features h2,
    .categories h2,
    .how-it-works h2,
    .products h2,
    .benefits h2,
    .testimonials h2,
    .getting-started h2,
    .contacts h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 200px;
    }
    
    .brand-name {
        font-size: 1.4rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}