
/* Block 1 */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-container {
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4);
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
}

.hero-cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

.button-text {
    position: relative;
}

.button-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.hero-cta-button:hover .button-icon {
    transform: translateX(5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 500px;
        height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-button {
        padding: 15px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        gap: 10px;
    }
}

/* Block 2 */
.specialty-coffee-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: relative;
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #D2B48C);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.coffee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.coffee-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.coffee-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.coffee-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.coffee-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.coffee-card:hover .coffee-image {
    transform: scale(1.1);
}

.coffee-badge {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    background: #28a745;
    margin: 15px;
    display: inline-block;
}

.coffee-badge.premium {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #2c3e50;
}

.coffee-badge.specialty {
    background: linear-gradient(45deg, #8B4513, #D2B48C);
}

.coffee-info {
    padding: 30px;
}

.coffee-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.coffee-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.coffee-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.intensity-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-tag {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8B4513;
}

.roasting-process {
    background: white;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.process-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.process-description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.process-features {
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 500;
    color: #495057;
}

.feature-icon {
    color: #8B4513;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
}

.roasting-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .process-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .roasting-process {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .specialty-coffee-showcase {
        padding: 60px 0;
    }
    
    .coffee-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .roasting-process {
        padding: 30px 20px;
    }
    
    .process-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .coffee-details {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .coffee-info {
        padding: 25px 20px;
    }
}

/* Block 3 */
.sustainability-innovation {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #eef7f0 100%);
    position: relative;
    overflow: hidden;
}

.sustainability-innovation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(139, 195, 74, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.sustainability-header {
    text-align: center;
    margin-bottom: 60px;
}

.eco-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.sustainability-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sustainability-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.innovation-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.innovation-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-visual {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.innovation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.innovation-card:hover .innovation-image {
    transform: scale(1.05);
}

.tech-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.tech-badge {
    background: rgba(76, 175, 80, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.card-content {
    padding: 30px;
}

.innovation-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.innovation-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.innovation-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4caf50;
}

.stat-label {
    font-size: 14px;
    color: #718096;
    font-weight: 500;
}

.innovation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.circular-economy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.economy-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.economy-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.economy-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 30px;
}

.circular-process {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.step-text {
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
    text-align: center;
}

.step-arrow {
    color: #4caf50;
    font-size: 20px;
    font-weight: bold;
}

.impact-metrics {
    margin-bottom: 80px;
}

.metrics-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 40px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.metric-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 20px;
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
}

.metric-unit {
    font-size: 14px;
    color: #718096;
    font-weight: 500;
}

.community-program {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-header {
    text-align: center;
    margin-bottom: 50px;
}

.program-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.program-description {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.program-initiatives {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.initiative-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.initiative-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    flex-shrink: 0;
}

.initiative-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.initiative-text {
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 10px;
}

.initiative-impact {
    color: #4caf50;
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 992px) {
    .sustainability-title {
        font-size: 2.5rem;
    }
    
    .innovation-showcase,
    .circular-economy,
    .program-initiatives {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sustainability-innovation {
        padding: 60px 0;
    }
    
    .sustainability-title {
        font-size: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .circular-process {
        justify-content: center;
    }
    
    .community-program {
        padding: 30px 20px;
    }
    
    .initiative-item {
        flex-direction: column;
        text-align: center;
    }
    
    .initiative-image {
        width: 100%;
        height: 200px;
    }
}

/* Block 4 */
.order-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a574 0%, #8b4513 50%, #d4a574 100%);
}

.form-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.form-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.barista-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.9);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139,69,19,0.3) 0%, rgba(212,165,116,0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brewing-animation {
    animation: float 3s ease-in-out infinite;
}

.brewing-icon {
    font-size: 4rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.form-intro {
    padding: 0 20px;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #8b4513;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.form-title {
    font-size: 2.8rem;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
}

.order-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
}

.coffee-order-form {
    padding: 40px;
}

.form-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8f9fa;
}

.input-group {
    display: grid;
    gap: 25px;
}

.input-wrapper {
    position: relative;
}

.input-label {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-input:focus {
    outline: none;
    border-color: #d4a574;
    background: white;
    box-shadow: 0 0 0 3px rgba(212,165,116,0.1);
}

.input-decoration {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 12px;
}

.input-icon {
    color: #6c757d;
    font-size: 18px;
}

.coffee-selection {
    display: grid;
    gap: 25px;
}

.coffee-option {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 2px solid #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.coffee-option:hover {
    border-color: #d4a574;
    background: #fffef8;
}

.option-image {
    flex-shrink: 0;
}

.blend-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.option-details {
    flex: 1;
}

.blend-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.blend-description {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.quantity-label {
    font-size: 12px;
    font-weight: 600;
    color: #495057;
    text-transform: uppercase;
}

.quantity-select {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    background: white;
}

.delivery-methods {
    display: grid;
    gap: 15px;
}

.delivery-option {
    position: relative;
}

.radio-input {
    position: absolute;
    opacity: 0;
}

.delivery-label {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-input:checked + .delivery-label {
    border-color: #d4a574;
    background: linear-gradient(135deg, #fffef8 0%, #faf9f2 100%);
}

.delivery-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #6c757d;
}

.radio-input:checked + .delivery-label .delivery-icon {
    background: linear-gradient(135deg, #d4a574 0%, #c19653 100%);
    color: white;
}

.delivery-info {
    flex: 1;
}

.delivery-title {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3px;
}

.delivery-desc {
    font-size: 14px;
    color: #6c757d;
}

.delivery-price {
    font-weight: 700;
    color: #d4a574;
    font-size: 16px;
}

.form-actions {
    border-top: 2px solid #f8f9fa;
    padding-top: 30px;
    margin-top: 30px;
}

.order-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-label {
    color: #6c757d;
}

.summary-value {
    font-weight: 600;
    color: #495057;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
    margin-top: 15px;
}

.total-label {
    font-weight: 700;
    color: #2c3e50;
    font-size: 18px;
}

.total-value {
    font-weight: 700;
    color: #d4a574;
    font-size: 20px;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #d4a574 0%, #c19653 100%);
    border: none;
    padding: 18px;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212,165,116,0.3);
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.button-ripple {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.submit-button:hover .button-ripple {
    transform: translateX(100%);
}

.order-benefits {
    display: grid;
    gap: 25px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4a574 0%, #c19653 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .form-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .order-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .form-title {
        font-size: 2.2rem;
    }
    
    .coffee-option {
        flex-direction: column;
        text-align: center;
    }
    
    .delivery-label {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .coffee-order-form {
        padding: 30px 20px;
    }
}
