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

body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    font-weight: 400;
}

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

/* Header */
header {
    background-color: #ffffff;
    color: #555555;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo .flag {
    font-size: 2.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.5rem;
    color: #555555;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
}

/* Main Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav ul li a {
    color: #333333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    display: block;
}

.main-nav ul li a:hover {
    color: #555555;
}

/* Main Content */
main {
    margin-top: 0;
    padding-top: 80px;
}

/* Hero Section */
.hero {
    background: transparent;
    color: #555555;
    padding: 40px 0 0 0;
    text-align: left;
}

.hero-small {
    background: transparent;
    color: #555555;
    padding: 40px 0 40px 0;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 100px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333333;
    white-space: nowrap;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666666;
}

/* Feature Cards Section */
.features {
    background-color: #ffffff;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 40px;
    margin: 30px auto;
    max-width: 1200px;
}

.feature-card.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-content h2 {
    font-size: 2.5rem;
    color: #555555;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.feature-content p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-image {
    flex: 0.8;
    min-width: 250px;
    max-width: 400px;
    height: auto;
}

.feature-image img {
    width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.placeholder-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Delivery Section */
.service-delivery {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.service-delivery h2 {
    font-size: 2.5rem;
    color: #555555;
    margin-bottom: 25px;
    font-weight: 700;
    padding-left: 50px;
}

.service-delivery p {
    font-size: 1.15rem;
    color: #666666;
    line-height: 1.8;
    padding-left: 50px;
}

/* Platforms Section */
.platforms {
    padding: 60px 0;
    background-color: #ffffff;
}

.platforms h3 {
    font-size: 2rem;
    color: #555555;
    margin-bottom: 30px;
    font-weight: 700;
    padding-left: 50px;
}

.platform-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-left: 50px;
}

.platform-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.platform-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    color: #555555;
    margin-bottom: 15px;
    font-weight: 700;
    padding-left: 50px;
}

.contact-form-section > .container > p {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 40px;
    padding-left: 50px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input,
.form-row textarea {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #000000;
}

.form-row textarea {
    resize: vertical;
}

.contact-form .btn {
    display: inline-block;
    padding: 15px 50px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.contact-form .btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999999;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        gap: 5px;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 20px;
        display: none;
    }

    .main-nav ul.active {
        display: flex;
    }

@media (max-width: 768px) {
    .hero {
        padding: 100px 2rem 0 2rem;
    }

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

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

    .hero-content {
        padding: 0;
    }

    .feature-card,
    .feature-card.reverse {
        flex-direction: column;
        padding: 20px;
        margin: 20px auto;
    }

    .feature-content h2 {
        font-size: 1.8rem;
    }

    .feature-image {
        min-width: 100%;
    }

    .placeholder-image {
        height: 250px;
    }

    .service-delivery h2,
    .contact-form-section h2 {
        font-size: 1.8rem;
    }

    .platforms h3 {
        font-size: 1.5rem;
    }

    .side-menu {
        width: 280px;
        right: -280px;
        padding: 80px 30px 30px;
    }

    .container,
    .header-container,
    .hero-content {
        padding: 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        padding: 0 20px;
        gap: 30px;
    }

    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }

    .form-row {
        flex-direction: column;
    }

    .platform-links {
        flex-direction: column;
        align-items: center;
    }

    .platform-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Content Section Styles */
.content {
    padding: 80px 0;
    background-color: #ffffff;
}

.content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px;
}

.content h2 {
    font-size: 2.2rem;
    color: #555555;
    margin-bottom: 25px;
    margin-top: 40px;
    font-weight: 700;
}

.content h2:first-child {
    margin-top: 0;
}

.content h3 {
    font-size: 1.6rem;
    color: #555555;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.content p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

.content ul li {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 12px;
}

.content a {
    color: #000000;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.content a:hover {
    opacity: 0.7;
}

/* Grant Cards */
.grant-card {
    margin-bottom: 35px;
}

.grant-card h3 {
    font-size: 1.5rem;
    color: #555555;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 700;
}

.grant-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.grant-card p:last-child {
    margin-bottom: 0;
}

.grant-card strong {
    color: #000000;
}

/* Step Cards */
.step-card {
    margin-bottom: 35px;
}

.step-card h3 {
    font-size: 1.4rem;
    color: #555555;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 700;
}

.step-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.step-card ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.step-card ul li {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 8px;
}

.step-card a {
    color: #000000;
    font-weight: 600;
    text-decoration: none;
}

.step-card a:hover {
    text-decoration: underline;
}

/* Contact Cards */
.contact-card {
    margin-bottom: 35px;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #555555;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 700;
}

.contact-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.contact-card strong {
    color: #000000;
    font-weight: 600;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #555555;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 700;
}

.faq-item p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

.faq-item ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.faq-item ul li {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 8px;
}

.faq-item a {
    color: #000000;
    font-weight: 600;
}

/* Form Select Dropdown */
.form-row select {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
    cursor: pointer;
}

.form-row select:focus {
    outline: none;
    border-color: #000000;
}

/* Responsive adjustments for content pages */
@media (max-width: 768px) {
    .content {
        padding: 50px 0;
    }

    .content h2 {
        font-size: 1.8rem;
    }

    .content h3 {
        font-size: 1.3rem;
    }

    .grant-card h3,
    .step-card h3,
    .contact-card h3,
    .faq-item h3 {
        font-size: 1.2rem;
    }
}