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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
}

.half {
    flex: 1;
}

.photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background: #ddd;
}

/* Landing Page */
.landing {
    background-color: #f6f6f6;
    color: #343434;
}

.landing .half:last-child {
    text-align: center;
}

.landing h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 300;
}

.tagline {
    margin-bottom: 30px;
}

.tagline > p {
    font-size: 1.5rem;
    font-weight: 400;
}

.cta-button {
    background-color: #343434;
    color: #f6f6f6;
    padding: 12px 30px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #555;
}

/* About Me */
.about {
    background-color: #b4b0ab;
    color: #343434;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Sample Work */
.work {
    background-color: #343434;
    color: #f6f6f6;
    flex-direction: column;
}

.work h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 300;
    text-align: center;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.work-card {
    background-color: #555;
    padding: 40px;
    text-align: center;
}

.work-logo {
    width: 80px;
    height: 80px;
    background-color: #f6f6f6;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #343434;
}

.work-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.work-card h3 a {
    color: #f6f6f6;
    text-decoration: none;
}

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

.work-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Experience */
.experience {
    background-color: #ffffff;
    color: #343434;
    flex-direction: column;
}

.experience h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 300;
    text-align: center;
}

.experience-list {
    width: 100%;
    max-width: 800px;
}

.experience-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.experience-item:last-child {
    border-bottom: none;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.experience-title {
    font-size: 1.3rem;
    font-weight: bold;
}

.experience-date {
    font-size: 1rem;
    color: #666;
}

.experience-company {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
}

.experience-description {
    font-size: 1rem;
    line-height: 1.6;
}

/* Reach Out */
.contact {
    background-color: #000000;
    color: #ffffff;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.contact-info {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 40px;
    }

    .landing h1 {
        font-size: 2rem;
    }

    .section {
        padding: 20px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .experience-header {
        flex-direction: column;
        align-items: flex-start;
    }
}