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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    /* background: linear-gradient(to bottom, rgba(45, 130, 160, 0.9) 0%, rgba(35, 110, 140, 0.8) 100%); */
    background-image: url("img/hero-pattern.png");
    min-height: 100vh;
}

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

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4a5568;
    text-decoration: none;
    flex-shrink: 0;
}

a.logo img {
    height: 65px;
    vertical-align: bottom;
    margin-bottom: 0.2em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-shrink: 0;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;

}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: bold;
    font-size: 16pt;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

.nav-links a:hover {
    color: #2d82a0;
    background: rgba(45, 130, 160, 0.1);
    transform: translateY(-1px);
}

.page {
    min-height: calc(100vh - 160px);
    padding: 2rem 0;
    margin-bottom: 80px;
}

.hero {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(45, 130, 160, 1), rgba(35, 110, 140, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 1rem;
    text-align: left;
}

.form {
    background-image: url('form-loading.gif');
    background-repeat: no-repeat;
    background-position: 50% 20%;
    background-size: 100px;
}

.cta-button {
    display: inline-block;
    background: #1e7e34;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 126, 52, 0.4);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    text-align: center;
    padding: 1.5rem 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

footer p img {
    vertical-align: middle;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

iframe {
    border: 0;
    width: 100%;
    height: 1000px;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 20px;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 14pt;
    }

    .nav-links a:hover {
        color: rgba(45, 130, 160, 1);
    }

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

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

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

    a.logo {
        text-align: center;
    }

}