* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.logo-hero {
    width: 1000px;
    height: auto;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slogan {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid;
}

.btn-primary {
    background: #FBBF24;
    color: #1E3A8A;
    border-color: #FBBF24;
}

.btn-primary:hover {
    background: #F59E0B;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251,191,36,0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #1E3A8A;
}

/* Services */
.services {
    padding: 100px 0;
    background: #F8FAFC;
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #1E3A8A;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.price-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #10B981;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1E3A8A;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #FBBF24;
    margin-bottom: 30px;
}

.price-card ul {
    list-style: none;
    text-align: left;
}

.price-card li {
    padding: 10px 0;
    border-bottom: 1px solid #E5E7EB;
}

.price-card li:last-child {
    border-bottom: none;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-item a {
    color: #FBBF24;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .services h2, .contact h2 { font-size: 2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; }
}
