/* Custom styles to integrate the chosen fonts */
body {
    font-family: Inter, sans-serif;
    background-color: #F8F9FA; /* A very light, clean grey */
    color: #212529; /* A dark, near-black for high readability */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.hero--background {
    /* A subtle background texture reminiscent of architectural paper or stone */
    background-image: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
    background-color: #E9ECEF; /* A light stone grey */
}

/* Button Styles */
.button {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.button--primary {
    background-color: #DD6B20; /* bg-orange-600 */
    color: #FFF; /* text-white */
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%); /* shadow-sm */
}

.button--primary:hover {
    background-color: #C05621; /* hover:bg-orange-700 */
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 10%), 0 2px 4px -1px rgb(0 0 0 / 6%); /* hover:shadow-md */
}

.button--sm {
    padding: 0.5rem 1.5rem; /* py-2 */ /* py-2 */ /* px-6 */ /* px-6 */
    border-radius: 0.375rem; /* rounded-md */
    font-size: 0.875rem; /* text-sm */
}

.button--lg {
    padding: 0.75rem 2rem; /* py-3 */ /* py-3 */ /* px-8 */ /* px-8 */
    border-radius: 0.375rem; /* rounded-md */
}

/* Section Styles */
.section {
    padding-top: 5rem; /* py-20 */
    padding-bottom: 5rem; /* py-20 */
}

.section--hero {
    padding-top: 6rem; /* py-24 */
    padding-bottom: 6rem; /* py-24 */
}

@media (width >= 768px) {
    .section {
        padding-top: 7rem; /* md:py-28 */
        padding-bottom: 7rem; /* md:py-28 */
    }

    .section--hero {
        padding-top: 8rem; /* md:py-32 */
        padding-bottom: 8rem; /* md:py-32 */
    }
}

/* Container Styles */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem; /* px-6 */
    padding-right: 1.5rem; /* px-6 */
}

/* Card Styles */
.card {
    background-color: #FFF;
    padding: 2rem;
    border-radius: 0.5rem;
    border-width: 1px;
    border-color: #E2E8F0;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
    text-align: center;
}

.card__icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.card__icon {
    height: 3rem;
    width: 3rem;
    color: #334155;
}

.card__title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: #1E293B;
}

.card__text {
    margin-top: 0.5rem;
    color: #475569;
}

/* Commitment Card Styles */
.commitment-card {
    text-align: center;
}

.commitment-card__icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    width: 4rem;
    height: 4rem;
    margin-left: auto;
    margin-right: auto;
    background-color: #F1F5F9;
    border-radius: 9999px;
}

.commitment-card__icon {
    height: 2rem;
    width: 2rem;
    color: #475569;
}

.commitment-card__title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: #1E293B;
}

.commitment-card__text {
    margin-top: 0.5rem;
    color: #475569;
}

/* Principle Styles */
.principle-list {
    margin-top: 2.5rem;
}

.principle-list > * + * {
    margin-top: 2rem;
}

.principle {
    display: flex;
    align-items: flex-start;
}

.principle__icon-wrapper {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.principle__icon {
    height: 1.25rem;
    width: 1.25rem;
    color: #334155;
}

.principle__content {
    margin-left: 1rem;
}

.principle__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1E293B;
}

.principle__text {
    margin-top: 0.25rem;
    color: #475569;
}

/* Form Styles */
.form-wrapper {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFF;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 10%), 0 10px 10px -5px rgb(0 0 0 / 4%);
}

@media (width >= 768px) {
    .form-wrapper {
        padding: 2.5rem;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

.form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
}

.form__input {
    margin-top: 0.25rem;
    display: block;
    width: 100%;
    border-width: 1px;
    border-color: #CBD5E1;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
    padding: 0.5rem 0.75rem;
}

.form__input:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    border-color: #64748B;
    box-shadow: 0 0 0 3px #64748B;
}
