* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    height: 100vh;
    overflow: hidden;
    background: #FAFAFA;
    color: #3c3d3c;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    height: 75vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.left-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero {
    text-align: left;
}

.hero .logo {
    width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.4rem;
    max-width: 500px;
    line-height: 1.6;
}

.section {
    text-align: left;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #3c3d3c;
    position: relative;
    display: inline-block;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #da8267;
    border-radius: 3px;
}

.section p {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.contact-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(238, 238, 238, 0.2);
    margin: auto;
    align-items: center;
}

.contact-section p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.contact-section a {
    color: #da8267;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(218, 130, 103, 0.3);
    display: inline-block;
}

.contact-section a:hover {
    color: #da8267;
    border-bottom-color: #da8267;
}

.right-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.project-card {
    padding: 1rem 0;
    position: relative;
}

.project-card:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #da8267, transparent);
}

.project-card h3 {
    color: #3c3d3c;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.project-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-card a {
    color: #da8267;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.project-card a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        padding: 2rem;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        height: auto;
        min-height: 100vh;
    }

    .right-section {
        margin-top: 2rem;
    }

    .contact-section {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero .logo {
        width: 150px;
    }
    
    .hero p {
        font-size: 1.2rem;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .section p {
        font-size: 1rem;
    }

    .project-card {
        padding: 0.8rem 0;
    }

    .project-card h3 {
        font-size: 1.2rem;
    }
} 