        /* Hosting-specific styles */
        .hosting-hero {
            text-align: center;
            padding: 2rem 0;
            background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
            color: white;
            border-radius: 10px;
            margin-bottom: 2rem;
        }

        .hosting-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hosting-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .guarantee-box {
            background: #e0e7ff;
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            margin: 2rem 0;
            border-left: 4px solid #3a86ff;
        }

        .guarantee-box h3 {
            color: #1e3a8a;
            margin-bottom: 1rem;
        }

/* Billing Toggle Styles */
/* ============================================
   BILLING TOGGLE STYLES
 ============================================ */

.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0 2.5rem 0;
}

.toggle-label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.toggle-switch {
    display: flex;
    background: #f0f0f0;
    border-radius: 25px;
    padding: 0.3rem;
    gap: 0;
}

.toggle-switch input[type="radio"] {
    display: none;
}

.toggle-switch label {
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    border-radius: 20px;
    transition: all 0.3s ease;
    user-select: none;
    font-size: 0.9rem;
}

.toggle-switch input[type="radio"]:checked + label {
    background: #3a86ff;
    color: white;
    box-shadow: 0 2px 4px rgba(58, 134, 255, 0.3);
}

.toggle-switch label:hover {
    color: #333;
}

/* ============================================
   PRICING CARDS CONTAINER
   ============================================ */
/* This replaces the original .pricing-structure/pricing-tier classes for this section */
.hosting-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    align-items: stretch;
}

/* ============================================
   INDIVIDUAL HOSTING CARD STYLES
   ============================================ */

.hosting-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.hosting-card:hover {
    border-color: #3a86ff;
    box-shadow: 0 8px 24px rgba(58, 134, 255, 0.15);
    transform: translateY(-4px);
}

.hosting-card.highlight {
    border-color: #3a86ff;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    box-shadow: 0 8px 24px rgba(58, 134, 255, 0.15);
}

.hosting-card.highlight:hover {
    box-shadow: 0 12px 32px rgba(58, 134, 255, 0.2);
}

/* ============================================
   BADGE FOR POPULAR PLAN
   ============================================ */

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2e7d32;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hosting-card h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.3rem;
    color: #1e3a8a;
}

/* ============================================
   PRICE DISPLAY STYLES
   ============================================ */

.price-display {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2e7d32;
    margin: 0;
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ============================================
   HOSTING FEATURES LIST
   ============================================ */

.hosting-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1; /* Ensures the list takes up available space for consistent button alignment */
}

.hosting-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
}

.hosting-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3a86ff;
    font-weight: bold;
    font-size: 1.1rem;
}

.hosting-features li strong {
    color: #1e3a8a;
    font-weight: 600;
}

/* ============================================
   BUTTON STYLES (MODIFIED)
   ============================================ */

.purchase-btn {
    /* Base styles from original template are kept, but modified for full width and better padding */
    background: #3a86ff;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem; /* Increased padding */
    border-radius: 8px; /* Slightly larger border-radius */
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%; /* Full width button */
    margin-top: auto; /* Pushes button to the bottom of the flex container */
}

.purchase-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(58, 134, 255, 0.3); /* Enhanced shadow */
}

/* ============================================
   RESPONSIVE DESIGN (UPDATED)
   ============================================ */

@media (max-width: 768px) {
    .billing-toggle-container {
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0 2rem 0;
    }

    .hosting-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hosting-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .toggle-switch label {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .billing-toggle-container {
        margin: 1rem 0 1.5rem 0;
    }

    .toggle-label {
        font-size: 0.85rem;
    }

    .toggle-switch {
        gap: 0.2rem;
    }

    .toggle-switch label {
        padding: 0.35rem 0.8rem;
        font-size: 0.75rem;
    }

    .hosting-card {
        padding: 1.2rem;
    }

    .hosting-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .price-display {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .hosting-features li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }

    .purchase-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
}

/* Development Section Styles */
.development-section {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.development-hero {
    text-align: center;
    background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    position: relative;
}

.development-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.price-badge {
    display: inline-block;
    background: #3a86ff;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Process Steps */
.development-process {
    margin-bottom: 4rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.18);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #3a86ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Features Grid */
.included-features {
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #3a86ff;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:before {
    content: "✓";
    color: #3a86ff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}

.req-icon {
    font-size: 2rem;
}

.req-content h4, .req-content h5 {
    margin: 0 0 0.5rem 0;
    color: #1e3a8a;
}

/* Add-ons Section */
.add-ons-section {
    margin-bottom: 4rem;
}

.section-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.add-on-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.18);
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s ease;
}

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

.add-on-card.popular {
    border-color: #8e2de2;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #8e2de2;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.add-on-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.add-on-price {
    background: #3a86ff;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

.add-on-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.add-on-card li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.add-on-card li:before {
    content: "•";
    color: #3a86ff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.18);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.portfolio-price {
    background: #2e7d32;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.portfolio-links {
    margin-bottom: 1rem;
}

.portfolio-link {
    display: inline-block;
    background: #e0e7ff;
    color: #3a86ff;
    padding: 0.3rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    margin-right: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: #3a86ff;
    color: white;
}

.portfolio-notes {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3a86ff 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
}

.cta-content h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-button {
    display: inline-block;
    background: #8e2de2;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: #7a1fc9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}
.policy-box {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.policy-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ffeaa7;
}

.policy-icon {
    font-size: 1.5rem;
}

.policy-header h4 {
    margin: 0;
    color: #856404;
    font-size: 1.3rem;
}

.policy-content p {
    margin-bottom: 1rem;
    color: #856404;
    line-height: 1.5;
    text-align: left;
}

.policy-examples {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.example-included, .example-extra {
    padding: 1rem;
    border-radius: 8px;
}

.example-included {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
}

.example-extra {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
}

.example-included h5, .example-extra h5 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
}

.example-included h5 {
    color: #155724;
}

.example-extra h5 {
    color: #721c24;
}

.policy-examples ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-examples li {
    padding: 0.3rem 0;
    font-size: 0.85rem;
    position: relative;
    padding-left: 1.2rem;
    text-align: left;
    color: #856404;
}

.example-included li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.example-extra li:before {
    color: #721c24;
    content: "$";
    position: absolute;
    left: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .policy-examples {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .policy-box {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .policy-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

        .plan-type-badge {
    display: inline-block;
    background: #3a86ff;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.single-page-clarification {
    background: #e3f2fd;
    border: 2px solid #3a86ff;
    border-radius: 10px;
    padding: 1.5rem;
    margin: -1rem auto 3rem auto;
    max-width: 800px;
}

.clarification-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.clarification-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.clarification-text h4 {
    margin: 0 0 0.5rem 0;
    color: #1e3a8a;
}

.clarification-text p {
    margin: 0.5rem 0;
    color: #333;
}

.monthly-cost {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 0.8rem;
    margin: 1rem 0;
    text-align: center;
}

.cost-label {
    font-weight: bold;
    color: #856404;
    font-size: 1rem;
}

.cost-note {
    font-size: 0.8rem;
    color: #856404;
    margin-top: 0.3rem;
}

.future-enhancements {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 2rem;
}

.enhancements-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.enhancements-icon {
    font-size: 2rem;
}

.enhancements-header h4 {
    margin: 0;
    color: #1e3a8a;
    font-size: 1.3rem;
}

.enhancements-content p {
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.5;
}

.enhancements-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.option {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3a86ff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.option-title {
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.option-details {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.enhancements-note {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #3a86ff;
    font-size: 0.9rem;
    color: #1e3a8a;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .future-enhancements {
        padding: 1.5rem;
    }

    .enhancements-options {
        grid-template-columns: 1fr;
    }

    .enhancements-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .clarification-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .development-section {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 2rem;
    }

    .development-hero h2 {
        font-size: 2rem;
    }

    .process-steps,
    .features-grid,
    .requirements-grid,
    .add-ons-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .add-on-header,
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .requirement-item {
        flex-direction: column;
        text-align: center;
    }
}
