/*
=======================================================
GLOBAL STYLES - AYSTRA CORP
=======================================================
*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: #ffffff;
    color: #333333;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

h1, h2, h3 { color: #1a1a1a; }

a { color: #1450b4; text-decoration: none; }
a:hover { color: #00b4f0; }

/*
=======================================================
LAYOUT & COMPONENTS
=======================================================
*/

/* Hero */
.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #1450b4 0%, #00b4f0 100%);
    color: white;
}
.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}
.hero p {
    font-size: 1.5rem;
    color: #e8f4ff;
    max-width: 800px;
    margin: 0 auto;
}

/* Sections */
.section, .container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}
.section h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* Service Card Styles */
.service-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #eeeeee;
    border-top: 6px solid #1450b4;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-top-color: #00b4f0;
}
.service-card i {
    font-size: 3rem;
    color: #1450b4;
    margin-bottom: 20px;
    display: block;
}
.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}
.service-card p {
    color: #666666;
    margin-bottom: 20px;
}
.service-card .learn-more {
    color: #1450b4;
    font-weight: 700;
    transition: color 0.3s;
}
.service-card .learn-more:hover {
    color: #00b4f0;
}

/* Contact Section */
.contact {
    text-align: center;
    background: #f8f8f8;
    padding: 80px 20px;
    margin: 80px 0;
}
.contact h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}
.contact-info {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}
.contact-info p {
    margin: 15px 0;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #1450b4;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}
.cta-button:hover {
    background-color: #00b4f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 80, 180, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .section h2 { font-size: 2.5rem; }
    .service-card { width: 100%; }
    .services-grid {
        grid-template-columns: 1fr;
    }
}
