/* General Styles */
body {
    margin-top: 80px;
}

/* Header Text Section */
.header-text-section {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.header-text-content {
    font-size: 38px;
    max-width: 776px;
    margin-bottom: 24px;
    line-height: 1.5;
    color: #2D2C2A;
}

.Description {
    font-size: 16px;
    color: #85827C;
    line-height: 1.6;
    max-width: 500px;
}

/* Founder Section */
.founder-section {
    padding: 100px 80px;
    background-color: #F4ECE3;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.founder-box {
    display: flex;
    align-items: flex-start;
}

.image-container {
    flex: 0 0 150px;
    margin-right: 32px;
}

.founder-image {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}

.text-container {
    flex: 1;
}

.policy-title {
    font-size: 24px;
    color: #2D2C2A;
    margin-bottom: 16px;
}

/* Image Grid Section */
.image-grid-section {
    background: #fff;
    padding: 100px 80px;
}

.image-grid-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 980px) {
    body {
        margin-top: 70px;
    }

    .header-text-content {
        font-size: 32px;
    }

    .grid-container {
        grid-template-columns: 1fr; /* Stack founder and craftsmanship boxes */
        gap: 40px;
    }

    .founder-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .founder-image {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
    }

    .image-container {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .image-grid-section {
        background: #fff;
        padding: 60px 20px;
    }
    

    /* Center text in Craftsmanship box */
    .craftsmanship-box {
        text-align: center;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }

    .Description {
        max-width: 450px;
        margin: 0 auto; /* Center the description text */
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    body {
        margin-top: 60px;
    }

    .header-text-section {
        padding: 50px 20px;
    }

    .header-text-content {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .image-container {
        margin-right: 0;
        margin-bottom: 16px;
        flex: 0 0 auto;
    }

    .founder-section {
        padding: 50px 20px;
    }

    .founder-image {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
    }

    .grid-container {
        gap: 20px;
    }

    .image-grid {
        grid-template-columns: 1fr; /* 1 column for mobile */
    }

    .Description {
        max-width: 320px;
        font-size: 15px;
    }
}