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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #4A4A4A;
    background-color: #FEFEFE;
}

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

/* Header */
.header {
    background-color: #FEFEFE;
    padding: 20px 0;
    border-bottom: 1px solid #E8E4E0;
}

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

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

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

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

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

.hero-img,
.experience-img,
.coworking-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.product-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.host-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

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

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

.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

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

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

.btn-secondary {
    background-color: #1A237E;
    color: white;
}

.btn-secondary:hover {
    background-color: #151B5C;
}

.image-placeholder {
    background-color: #E8E4E0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B7355;
    font-style: italic;
    border-radius: 8px;
    height: 300px;
}

.image-placeholder.small {
    height: 80px;
    width: 80px;
    border-radius: 50%;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #FEFEFE;
}

.about-content.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 36px;
    color: #1A237E;
    margin-bottom: 24px;
    font-weight: 400;
}

.about p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.feature span {
    color: #1A237E;
    font-weight: 500;
}

.centered {
    text-align: center;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: #FAF8F6;
}

.how-it-works h2 {
    font-size: 36px;
    color: #1A237E;
    margin-bottom: 60px;
    font-weight: 400;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
    padding: 32px 24px;
    background-color: #FEFEFE;
    border-radius: 12px;
    border: 1px solid #E8E4E0;
}

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

.step h3 {
    font-size: 20px;
    color: #1A237E;
    margin-bottom: 16px;
    font-weight: 500;
}

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

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #FEFEFE;
}

.products h2 {
    font-size: 36px;
    color: #1A237E;
    margin-bottom: 60px;
    font-weight: 400;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E8E4E0;
    background-color: #FEFEFE;
}

.product-image .image-placeholder {
    height: 240px;
    margin: 0;
    border-radius: 0;
}

.product-content {
    padding: 32px;
}

.product-content h3 {
    font-size: 22px;
    color: #1A237E;
    margin-bottom: 12px;
    font-weight: 500;
}

.product-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #D4A574;
    margin-bottom: 20px;
}

/* Local Experience */
.local-experience {
    padding: 80px 0;
    background-color: #FAF8F6;
}

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

.experience-text h2 {
    font-size: 36px;
    color: #1A237E;
    margin-bottom: 24px;
    font-weight: 400;
}

.experience-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.experience-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 24px;
}

.experience-features li::before {
    content: '•';
    color: #D4A574;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Coworking Section */
.coworking {
    padding: 80px 0;
    background-color: #FEFEFE;
}

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

.coworking-text h2 {
    font-size: 36px;
    color: #1A237E;
    margin-bottom: 24px;
    font-weight: 400;
}

.coworking-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.coworking-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.coworking-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Host Network */
.host-network {
    padding: 80px 0;
    background-color: #FAF8F6;
}

.host-network h2 {
    font-size: 36px;
    color: #1A237E;
    margin-bottom: 16px;
    font-weight: 400;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.host-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.host-card {
    padding: 32px 24px;
    background-color: #FEFEFE;
    border-radius: 12px;
    border: 1px solid #E8E4E0;
    text-align: center;
}

.host-avatar {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.host-card h3 {
    font-size: 20px;
    color: #1A237E;
    margin-bottom: 12px;
    font-weight: 500;
}

.host-card p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #FEFEFE;
}

.benefits h2 {
    font-size: 36px;
    color: #1A237E;
    margin-bottom: 60px;
    font-weight: 400;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit {
    text-align: center;
    padding: 32px 24px;
}

.benefit svg {
    margin-bottom: 20px;
}

.benefit h3 {
    font-size: 20px;
    color: #1A237E;
    margin-bottom: 16px;
    font-weight: 500;
}

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

/* Contacts Section */
.contacts {
    padding: 80px 0;
    background-color: #FAF8F6;
}

.contacts h2 {
    text-align: center;
    font-size: 36px;
    color: #1A237E;
    margin-bottom: 60px;
    font-weight: 400;
}

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

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background-color: #FEFEFE;
    border-radius: 12px;
    border: 1px solid #E8E4E0;
}

.contact-item svg {
    margin-bottom: 16px;
}

.contact-item h3 {
    font-size: 18px;
    color: #1A237E;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-item a {
    color: #D4A574;
    text-decoration: none;
    font-weight: 500;
}

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

.contact-item address {
    font-style: normal;
    color: #666;
    line-height: 1.4;
}

/* Footer */
.footer {
    background-color: #1A237E;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .brand-name {
    color: white;
    font-size: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.footer-links a {
    color: #D4A574;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    color: #B0BEC5;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container,
    .experience-content,
    .coworking-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .steps,
    .host-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-features,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    h2 {
        font-size: 28px !important;
    }
    
    .about,
    .how-it-works,
    .products,
    .local-experience,
    .coworking,
    .host-network,
    .benefits,
    .contacts {
        padding: 60px 0;
    }
    
    .footer-content {
        gap: 16px;
    }
    
    .footer-links {
        gap: 20px;
    }
}