@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Open+Sans:wght@400;700&display=swap');

body {
    font-family: 'Inter', 'Open Sans', 'Roboto', Arial, sans-serif;
    font-size: 1.13rem;
    line-height: 1.7;
    background: #f8f9fa;
    color: #1a237e;
}

header {
    background: #1a237e;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo, .logo-crest {
    height: 64px;
    transition: transform 0.2s;
}
.logo-crest:hover {
    transform: scale(1.07) rotate(-2deg);
    filter: drop-shadow(0 2px 8px #ffd60088);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

nav a:hover {
    color: #ffd600;
}

.hero {
    background: linear-gradient(120deg, #1a237e 60%, #ffd600 100%);
    color: #fff;
    padding: 5rem 0 3.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero .doge-mascot {
    width: 120px;
    margin: 0 auto 1.5rem auto;
    display: block;
}
.hero h1 {
    font-size: 3.2rem;
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}
.hero p {
    font-size: 1.35rem;
    margin-bottom: 2.2rem;
    font-family: 'Open Sans', Arial, sans-serif;
}
.cta-btn {
    background: #ffd600;
    color: #1a237e;
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.18rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
}
.cta-btn:hover {
    background: #fffde7;
    color: #1a237e;
    box-shadow: 0 4px 16px #ffd60044;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.2rem 1.5rem;
}

.info-section {
    background: #fff;
    margin-bottom: 2.2rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 2.2rem 1.5rem;
}
.info-section.alt-bg {
    background: #f1f5fb;
}
.info-section h2 {
    color: #1a237e;
    margin-top: 0;
    font-size: 2rem;
}

.faq-accordion {
    margin-top: 2rem;
}
.faq-item {
    border-bottom: 1px solid #e3e6f3;
    padding: 1.1rem 0;
}
.faq-question {
    font-weight: 700;
    cursor: pointer;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    font-size: 1.08rem;
    color: #333;
    padding: 0 0;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0.7rem 0 0.7rem 0.5rem;
}
.faq-item.open .faq-question {
    color: #ffd600;
}

.price-widget {
    background: #fffde7;
    border: 2px solid #ffd600;
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.18rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px #ffd60022;
}
.price-widget .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a237e;
}
.price-widget .change {
    font-size: 1.1rem;
    font-weight: 600;
}
.price-widget .change.up {
    color: #388e3c;
}
.price-widget .change.down {
    color: #d32f2f;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 420px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px #ffd60022;
    padding: 2rem 1.5rem;
}
.newsletter-form input[type="email"] {
    padding: 0.8rem;
    border: 1.5px solid #b0bec5;
    border-radius: 4px;
    font-size: 1.08rem;
    font-family: inherit;
    background: #f8f9fa;
}
.newsletter-form button {
    background: #ffd600;
    color: #1a237e;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.newsletter-form button:hover {
    background: #fffde7;
    color: #1a237e;
}

.downloads-list {
    list-style: none;
    padding-left: 0;
}
.downloads-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.downloads-list a {
    color: #1a237e;
    text-decoration: underline;
    font-weight: 600;
}
.downloads-list a:hover {
    color: #ffd600;
}

footer {
    background: #1a237e;
    color: #fff;
    text-align: center;
    padding: 1.2rem 0;
    font-size: 1rem;
    margin-top: 2rem;
}

/* Contact form styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}
.contact-form label {
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.2rem;
}
.contact-form input,
.contact-form textarea {
    padding: 0.7rem;
    border: 1px solid #b0bec5;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: #f8f9fa;
    resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #ffd600;
    border-color: #ffd600;
    background: #fffde7;
}
.contact-form button.cta-btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* Leadership grid styles */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.leader-profile {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.leader-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #ffd600;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.leader-profile h3 {
    color: #1a237e;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.leader-profile p {
    margin: 0.2rem 0 0.7rem 0;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .leadership-grid {
        flex-direction: column;
        gap: 1.2rem;
        align-items: stretch;
    }
    .leader-profile {
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .hero {
        padding: 2.5rem 0 2rem 0;
    }
    .container {
        padding: 1.2rem 0.7rem;
    }
    nav ul {
        gap: 1rem;
    }
    .logo, .logo-crest {
        height: 44px;
    }
    .hero h1 {
        font-size: 2.1rem;
    }
    .contact-form, .newsletter-form {
        max-width: 100%;
        padding: 0 0.2rem;
    }
    .logo-main {
        max-width: 140px;
        margin-bottom: 1.2rem;
    }
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: #ffd600;
    color: #1a237e;
    padding: 0.7em 1.2em;
    z-index: 1000;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 8px #ffd60044;
    transition: left 0.2s;
}
.skip-link:focus {
    left: 10px;
    outline: 2px solid #1a237e;
}

.logo-main {
    display: block;
    margin: 0 auto 2rem auto;
    max-width: 220px;
    width: 100%;
    height: auto;
    box-shadow: 0 2px 12px rgba(26,35,126,0.10);
    border-radius: 12px;
    background: #fff;
    padding: 0.5rem;
} 