@import url('satoshi.css');

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

body {
    font-family: Satoshi-Regular, sans-serif;
    line-height: 1.6;
    color: #333;
}

.header {
    font-family: Satoshi-Bold, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 30px 20px 100px;
    text-align: center;

    .logo {
        margin: 10px 0 50px 0;
        text-align: center;
    }
}

.header h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
}

.header .tagline {
    font-size: 1.3em;
    margin-bottom: 15px;
    opacity: 0.95;
}

.header .experience {
    font-size: 1.1em;
    opacity: 0.9;
    margin-top: 20px;
    font-weight: 300;
}

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

.section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #1e3c72;
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #1e3c72;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.8;
}

.service-card ul {
    margin-top: 20px;
    list-style: none;
}

.service-card li {
    padding: 8px 0;
    color: #555;
}

.service-card li:before {
    content: "✓ ";
    color: #2a5298;
    font-weight: bold;
    margin-right: 10px;
}

.about {
    background: #f8f9fa;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2em;
    line-height: 1.9;
    color: #555;
}

.cta {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.cta p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-item {
    font-size: 1.2em;
}

.contact-item a {
    color: white;
    text-decoration: none;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    transition: border-color 0.3s ease;
}

.contact-item a:hover {
    border-color: white;
}

.footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }

    .header .tagline {
        font-size: 1.1em;
    }

    .section-title {
        font-size: 2em;
    }

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