* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Serif', Georgia, serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    font-size: 16px;
    height: 100vh;
}

.homepage-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    min-height: 600px;
}

.hero-image {
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
}

.hero-content {
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: none;
    margin: 0;
    overflow-y: auto;
}

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

header {
    text-align: center;
    padding: 0 0 40px;
    border-bottom: none;
    margin-bottom: 0;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #2c2c2c;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

header p {
    font-family: 'PT Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0;
}

main {
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}

main h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.3;
}

main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #2c2c2c;
    margin: 40px 0 20px;
    line-height: 1.4;
}

main h3 {
    font-family: 'PT Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 30px 0 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

main p {
    font-family: 'PT Serif', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

main p strong {
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
}

main ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

main li {
    font-family: 'PT Serif', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

main li:before {
    content: "•";
    color: #999;
    position: absolute;
    left: 0;
}

main a {
    color: #2c2c2c;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    transition: border-color 0.3s ease;
}

main a:hover {
    border-bottom-color: #2c2c2c;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 4px;
}

footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #eee;
    margin-top: 60px;
}

footer p {
    font-family: 'PT Sans', sans-serif;
    font-size: 0.85rem;
    color: #999;
    letter-spacing: 0.05em;
}

nav {
    margin-bottom: 30px;
    text-align: center;
}

nav a {
    font-family: 'PT Sans', sans-serif;
    font-size: 0.9rem;
    color: #2c2c2c;
    text-decoration: none;
    margin: 0 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

nav a:hover {
    border-bottom-color: #2c2c2c;
}

pre {
    background-color: #f8f8f8;
    padding: 20px;
    overflow-x: auto;
    border-radius: 4px;
    border: 1px solid #eee;
    margin: 20px 0;
}

code {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    background-color: #f8f8f8;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.9em;
    border: 1px solid #eee;
}

pre code {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: none;
}

@media (max-width: 768px) {
    .homepage-container {
        grid-template-columns: 1fr;
        grid-template-rows: 40vh 1fr;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    header h1 {
        font-size: 2.5rem;
    }
    
    main h1 {
        font-size: 2rem;
    }
    
    main h2 {
        font-size: 1.5rem;
    }
    
    main {
        padding: 20px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}
