/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    color: white;
    padding: 80px 0;
    padding-top: 160px;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../../assets/hidden-costs-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 768px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 32px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge i {
    font-size: 1.25rem;
}

/* Hidden Costs Section */
.hidden-costs-section {
    padding: 80px 0;
    background: #f9fafb;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4b5563;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
}

.costs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.cost-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 24px;
    transition: box-shadow 0.3s ease;
}

.cost-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.cost-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.cost-icon {
    width: 48px;
    height: 48px;
    background: #dbeafe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.cost-icon i {
    font-size: 1.5rem;
    color: #2563eb;
}

.cost-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 4px;
}

.cost-amount {
    color: #2563eb;
    font-weight: 600;
}

.cost-description {
    color: #6b7280;
    margin-bottom: 16px;
}

.cost-tip {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: flex-start;
}

.cost-tip i {
    font-size: 1rem;
    color: #16a34a;
    margin-right: 8px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cost-tip p {
    font-size: 0.875rem;
    color: #166534;
    margin: 0;
}

/* Protection Box */
.protection-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}

.protection-icon {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 16px;
}

.protection-box h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #4b5563;
    margin-bottom: 32px;
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.protection-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.protection-item {
    display: flex;
    align-items: flex-start;
}

.protection-item i {
    font-size: 1.25rem;
    color: #16a34a;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.protection-item span {
    color: #374151;
}

/* Saving Tips Section */
.saving-tips-section {
    padding: 80px 0;
    background: white;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.tip-category {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
}

.tip-category h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4b5563;
    margin-bottom: 24px;
    text-align: center;
}

.tip-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
}

.tip-item i {
    font-size: 1.25rem;
    color: #16a34a;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.tip-item span {
    color: #374151;
}

/* CTA Center */
.cta-center {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #1d4ed8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .costs-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .protection-box {
        padding: 32px 20px;
    }

    .protection-grid {
        grid-template-columns: 1fr;
    }
}

