/*!* Base Styles *!*/
/*body {*/
/*    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;*/
/*    line-height: 1.6;*/
/*    color: #333;*/
/*    background-color: #ffffff;*/
/*}*/

/*!* Header Section *!*/
/*.header-section {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    align-items: center;*/
/*    min-height: 90vh;*/
/*    padding: 2rem 5%;*/
/*    gap: 2rem;*/
/*}*/

/*.header-content h1 {*/
/*    font-size: 3.5rem;*/
/*    font-weight: 700;*/
/*    line-height: 1.2;*/
/*    margin-bottom: 1rem;*/
/*    color: #1d1d1f;*/
/*}*/

/*.sub-headline {*/
/*    font-size: 1.25rem;*/
/*    margin-bottom: 2.5rem;*/
/*    color: #555;*/
/*    max-width: 500px;*/
/*}*/

/*.header-image img {*/
/*    width: 100%;*/
/*    max-width: 650px;*/
/*    height: auto;*/
/*    border-radius: 12px;*/
/*}*/

/*.apple-logo {*/
/*    width: 180px;*/
/*    height: auto;*/
/*}*/

/*!* Features Section *!*/
/*.features-section {*/
/*    padding: 5rem 5%;*/
/*    background-color: #fff;*/
/*    text-align: center;*/
/*}*/

/*.features-section h2 {*/
/*    font-size: 2.5rem;*/
/*    margin-bottom: 4rem;*/
/*    color: #1d1d1f;*/
/*    line-height: 1.2;*/
/*}*/

/*.features-cards {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    gap: 2rem;*/
/*    flex-wrap: wrap;*/
/*}*/

/*.feature-card {*/
/*    background-color: #fff;*/
/*    border: 1px solid #e5e5e5;*/
/*    border-radius: 16px;*/
/*    padding: 2rem;*/
/*    max-width: 320px;*/
/*    text-align: left;*/
/*    transition: transform 0.3s ease, box-shadow 0.3s ease;*/
/*}*/

/*.feature-card:hover {*/
/*    transform: translateY(-10px);*/
/*    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);*/
/*}*/

/*.feature-header {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 1rem;*/
/*    margin-bottom: 0.5rem;*/
/*}*/

/*.feature-icon {*/
/*    width: 32px;*/
/*    height: 32px;*/
/*    margin-bottom: 0;*/
/*}*/

/*.feature-card h3 {*/
/*    font-size: 1.25rem;*/
/*    margin: 0;*/
/*}*/

/*!* Showcase Section *!*/
/*.showcase-section {*/
/*    padding: 5rem 5%;*/
/*    text-align: center;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    background-color: #f5f5f7;*/
/*}*/

/*.showcase-content h2 {*/
/*    font-size: 2.5rem;*/
/*    margin-bottom: 2rem;*/
/*    line-height: 1.2;*/
/*}*/

/*.showcase-image-container {*/
/*    max-width: 900px;*/
/*    margin: 0 auto;*/
/*}*/

/*.showcase-image-container img {*/
/*    width: 100%;*/
/*    border-radius: 12px;*/
/*    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.caption {*/
/*    margin-top: 1.5rem;*/
/*    font-size: 1.1rem;*/
/*    color: #666;*/
/*    max-width: 600px;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*}*/

/*!* Privacy Policy *!*/
/*.policy-wrapper {*/
/*    max-width: 720px;*/
/*    margin: 0 auto;*/
/*    padding: 3rem 1.5rem;*/
/*    font-size: 1rem;*/
/*    line-height: 1.8;*/
/*    color: #333;*/
/*}*/

/*.policy-wrapper h1,*/
/*.policy-wrapper h2,*/
/*.policy-wrapper h3 {*/
/*    font-family: "DM Serif Display", serif;*/
/*    color: #1d1d1f;*/
/*    margin-top: 2rem;*/
/*}*/

/*.policy-wrapper a {*/
/*    color: #0071e3;*/
/*    text-decoration: none;*/
/*}*/

/*.policy-wrapper a:hover {*/
/*    text-decoration: underline;*/
/*}*/


/*!* Footer Section *!*/
/*.footer-section {*/
/*    background-color: #1d1d1f;*/
/*    color: #a0a0a5;*/
/*    padding: 2rem 5%;*/
/*    text-align: center;*/
/*}*/

/*.footer-section p {*/
/*    margin-bottom: 1rem;*/
/*    font-size: 0.9rem;*/
/*}*/

/*.footer-nav a {*/
/*    color: #f5f5f7;*/
/*    margin: 0 1rem;*/
/*    text-decoration: none;*/
/*    transition: color 0.3s ease;*/
/*}*/

/*.footer-nav a:hover {*/
/*    color: #0071e3;*/
/*}*/

/*!* Responsive Design *!*/
/*@media (max-width: 900px) {*/
/*    .header-section {*/
/*        grid-template-columns: 1fr;*/
/*        text-align: center;*/
/*        min-height: auto;*/
/*        padding: 4rem 5%;*/
/*    }*/

/*    .sub-headline {*/
/*        margin-left: auto;*/
/*        margin-right: auto;*/
/*    }*/

/*    .header-image {*/
/*        margin-top: 3rem;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .header-content h1 {*/
/*        font-size: 2.5rem;*/
/*    }*/

/*    .features-cards {*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*    }*/
/*}*/

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Header Section */
.header-section {
    display: flex; /* Use flex to easily center the container */
    align-items: center;
    min-height: 90vh;
    padding: 2rem 5%;
}

/* This new container holds the grid and the max-width */
.header-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 1280px; /* Constrains the width on large screens */
    margin: 0 auto; /* Centers the container horizontally */
}

.header-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.sub-headline {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #555;
    max-width: 500px;
}

.header-image img {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 12px;
}

.apple-logo {
    width: 180px;
    height: auto;
}

/* Features Section */
.features-section {
    padding: 5rem 5%;
    background-color: #fff;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1d1d1f;
    line-height: 1.2;
}

.features-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 2rem;
    max-width: 320px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.feature-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin: 0;
}

/* Showcase Section */
.showcase-section {
    padding: 5rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f7;
}

.showcase-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.showcase-image-container {
    max-width: 900px;
    margin: 0 auto;
}

.showcase-image-container img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.caption {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Privacy Policy */
.policy-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.policy-wrapper h1,
.policy-wrapper h2,
.policy-wrapper h3 {
    font-family: "DM Serif Display", serif;
    color: #1d1d1f;
    margin-top: 2rem;
}

.policy-wrapper a {
    color: #0071e3;
    text-decoration: none;
}

.policy-wrapper a:hover {
    text-decoration: underline;
}


/* Footer Section */
.footer-section {
    background-color: #1d1d1f;
    color: #a0a0a5;
    padding: 2rem 5%;
    text-align: center;
}

.footer-section p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-nav a {
    color: #f5f5f7;
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #0071e3;
}

/* Responsive Design */
@media (max-width: 900px) {
    .header-section {
        /* The grid is on the container now, so we don't need to change it here */
        text-align: center;
        min-height: auto;
        padding: 4rem 5%;
    }

    /* Target the new container for the responsive grid change */
    .header-container {
        grid-template-columns: 1fr;
    }

    .sub-headline {
        margin-left: auto;
        margin-right: auto;
    }

    .header-image {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }

    .features-cards {
        flex-direction: column;
        align-items: center;
    }
}