/* 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: #2D3748;
    background-color: #F7FAFC;
}

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

/* Centered Sections */
.centered-section {
    text-align: center;
}

.centered-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.centered-section .planning-content {
    text-align: left;
}

/* Header */
.header {
    background: linear-gradient(135deg, #F7FAFC 0%, #E2E8F0 100%);
    padding: 1rem 0;
    border-bottom: 1px solid #E2E8F0;
}

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

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

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D3748;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F7F3E9 0%, #E8F5E8 100%);
    padding: 4rem 0;
}

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

.hero-image svg {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: #4A5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    background: #68D391;
    color: #2D3748;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #48BB78;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(104, 211, 145, 0.3);
}

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

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E0 100%);
    border: 2px dashed #A0AEC0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    font-weight: 500;
    text-align: center;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: #F7FAFC;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #E2E8F0;
}

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

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #4A5568;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F7F3E9 0%, #E8F5E8 100%);
}

.products h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 3rem;
}

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

.product-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

.product-image {
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: #4A5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #68D391;
    margin-bottom: 1rem;
}

.product-button {
    width: 100%;
    background: #2D3748;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-button:hover {
    background: #1A202C;
    transform: translateY(-1px);
}

/* Space Planning Section */
.space-planning {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

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

.planning-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 1rem;
}

.planning-text p {
    color: #4A5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.planning-features {
    list-style: none;
}

.planning-features li {
    color: #4A5568;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.planning-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #68D391;
    font-weight: bold;
}

.planning-image {
    display: flex;
    justify-content: center;
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F7F3E9 0%, #E8F5E8 100%);
}

.benefits h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 3rem;
}

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

.benefit-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #E2E8F0;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #4A5568;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 3rem;
}

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

.testimonial {
    background: #F7FAFC;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.testimonial p {
    color: #4A5568;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: #2D3748;
    font-weight: 600;
    text-align: right;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F7F3E9 0%, #E8F5E8 100%);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 3rem;
}

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

.step {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #E2E8F0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #68D391;
    color: #2D3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 0.5rem;
}

.step p {
    color: #4A5568;
    line-height: 1.6;
}

/* Contacts Section */
.contacts {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.contacts h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 3rem;
}

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

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

.contact-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #4A5568;
    line-height: 1.6;
}

.contact-item a {
    color: #68D391;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: #48BB78;
}

/* Footer */
.footer {
    background: #2D3748;
    color: #FFFFFF;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand .logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-description {
    color: #A0AEC0;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column h4 {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #E2E8F0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    color: #A0AEC0;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #4A5568;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .planning-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .features-grid,
    .products-grid,
    .benefits-grid,
    .testimonials-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-column {
        align-items: center;
        text-align: center;
    }
}