* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Hero Image Section */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Policy Section */
.policy-section {
    padding: 3rem 0;
    background-color: white;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* Image Column */
.image-column {
    width: 100%;
}

.policy-image {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
    display: block;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Text Column */
.text-column {
    width: 100%;
    text-align: center;
}

.title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    line-height: 1.25;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b7280;
}

.policy-content {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #111827;
    font-size: 1rem;
    line-height: 1.25;
}

/* Tablet and above (768px) */
@media (min-width: 768px) {
    .hero-image-container {
        height: 60vh;
    }

    .policy-section {
        padding: 5rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .policy-content {
        font-size: 1.25rem;
    }
}

/* Desktop (1024px and above) */
@media (min-width: 1024px) {
    .hero-image-container {
        height: 100vh;
    }

    .container {
        padding: 0 2rem;
    }

    .content-wrapper {
        flex-direction: row;
        gap: 4rem;
    }

    .image-column {
        width: 50%;
    }

    .text-column {
        width: 50%;
        text-align: left;
    }
}