/* =========================================
   Standard Page Styles
   ========================================= */

.standard-section {
    padding-top: 140px;
    padding-bottom: 120px;
}

.bg-cream {
    background-color: #fdfcfb;
    /* Adjust if needed based on global styles */
}

/* Header */
.standard-header {
    text-align: center;
    margin-bottom: 80px;
}

.standard-title {
    font-size: 3rem;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.text-green {
    color: #1d4d32;
}

.standard-subtitle {
    font-size: 1.15rem;
    color: #6e6e73;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}


/* Grid */
.standard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    /* Increased gap */
    max-width: 1000px;
    /* Increased max-width */
    margin: 0 auto;
}

.standard-card {
    background-color: white;
    border-radius: 32px;
    /* Smooth corners */
    padding: 48px;
    /* More padding */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.02);
    min-height: 320px;
    /* Consistent height */
}

.standard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.standard-card-title {
    font-size: 1.5rem;
    /* Larger Title */
    font-weight: 800;
    margin-bottom: 16px;
    color: #1d1d1f;
    letter-spacing: -0.01em;
}

.standard-card-desc {
    font-size: 1.05rem;
    color: #86868b;
    line-height: 1.7;
    word-break: keep-all;
    font-weight: 500;
}

.standard-card-icon {
    font-size: 42px;
    /* Larger Icon */
    color: #1d4d32;
    text-align: right;
    margin-top: 30px;
    opacity: 0.9;
}

/* Brand Box */
.standard-brand-box {
    margin-top: 100px;
    text-align: center;
    padding: 60px 40px;
    background: #f5f5f7;
    /* Apple-style light gray */
    border-radius: 30px;
    max-width: 800px;
    margin: 100px auto 60px;
    /* combined left/right auto */
}

.standard-brand-text {
    font-size: 1.5rem;
    color: #1d1d1f;
    line-height: 1.8;
    font-weight: 600;
    margin: 0;
}

.text-bold {
    font-weight: 800;
    color: #1d4d32;
    /* Emphasis color */
}


.text-bold {
    font-weight: 700;
}

/* CTA */
.standard-cta-container {
    margin-top: 60px;
    text-align: center;
}

.btn-standard-cta {
    display: inline-flex;
    align-items: center;
    padding: 22px 60px;
    font-size: 1.3rem;
    background-color: #1d4d32;
    border-color: #1d4d32;
    font-weight: 600;
    color: white;
    border-radius: 50px;
    /* pill shape */
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-standard-cta:hover {
    background-color: #153824;
    border-color: #153824;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .standard-grid {
        grid-template-columns: 1fr;
    }

    .standard-title {
        font-size: 2.2rem;
    }

    .btn-standard-cta {
        width: 100%;
        justify-content: center;
        padding: 20px;
    }
}