:root {
    --primary-blue: #475AC6;
    --dark-blue: #3A4AA3;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --footer-dark: #2D3142;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: linear-gradient(to bottom, #475AC6, #475AC6);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Jomhuria', cursive;
    font-size: 38px;
    font-weight: normal;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
    line-height: 0.9;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    opacity: 0.8;
}

.join-btn {
    background-color: black;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-block;
}

.join-btn:hover {
    background-color: white;
    color: var(--primary-blue);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #475AC6, #2d3a8f);
    color: white;
    padding: 120px 0 160px;
}

.about-hero {
    text-align: center;
    padding: 100px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 54px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 400;
}

.hero-text h3 {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: normal;
    line-height: 1.4;
}

.hero-text .join-btn {
    margin-top: 20px;
}

/* Identity Section */
.identity {
    background-color: var(--light-gray);
    padding: 80px 0;
    text-align: center;
}

.identity h1 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.identity h3 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
}

.identity p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 50px;
    font-weight: 400;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--primary-blue);
    color: white;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
}

.feature-circle {
    width: 60px;
    height: 60px;
    background-color: transparent;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-circle img {
    max-width: 100%;
    height: auto;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background-color: var(--primary-blue);
}

.why-choose h2 {
    color: white;
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-image {
    height: 220px;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-text {
    padding: 25px;
}

.benefit-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #333;
}

.benefit-text p {
    font-size: 16px;
    color: #555;
    font-weight: 400;
}

/* Join Section */
.join-section {
    padding: 100px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.join-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.join-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.sign-up-btn {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sign-up-btn:hover {
    background-color: var(--dark-blue);
}

.about-btn {
    background-color: black;
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background-color: #333;
}

/* Footer */
footer {
    background-color: var(--footer-dark);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-divider {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.5);
}

.social-icons {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.social-icon {
    color: white;
    font-size: 20px;
    margin: 0 15px;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.8;
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background-color: white;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.content-section h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    font-weight: 700;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.content-section li {
    margin-bottom: 8px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3,
.contact-form-container h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.contact-info > p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 20px;
    color: var(--primary-blue);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.social-contact h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.contact-social {
    display: flex;
    margin-bottom: 0;
}

.contact-social .social-icon {
    color: var(--primary-blue);
    background-color: #f0f0f0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.contact-social .social-icon:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* Contact Form */
.contact-form-container {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--dark-gray);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    color: var(--dark-gray);
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
}

.submit-btn {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.faq-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* MOBILE RESPONSIVE STYLES */

/* Tablet Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .features, 
    .benefit-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
    
    .hero-text h3 {
        font-size: 18px;
    }
    
    .identity h3 {
        font-size: 32px;
    }
    
    .why-choose h2 {
        font-size: 32px;
    }
    
    .join-section h2 {
        font-size: 36px;
    }
    
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobile */
    .logo {
        font-size: 32px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--primary-blue);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }
    
    .hamburger {
        display: block;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 80px 0 100px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .hero-text h3 {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-text br {
        display: none;
    }
    
    /* Identity Mobile */
    .identity {
        padding: 60px 0;
    }
    
    .identity h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .identity p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    /* Why Choose Mobile */
    .why-choose {
        padding: 80px 0;
    }
    
    .why-choose h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .benefit-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-image {
        height: 180px;
    }
    
    .benefit-text {
        padding: 20px;
    }
    
    .benefit-text h3 {
        font-size: 20px;
    }
    
    .benefit-text p {
        font-size: 14px;
    }
    
    /* Join Section Mobile */
    .join-section {
        padding: 80px 0;
    }
    
    .join-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .join-section p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .sign-up-btn,
    .about-btn {
        width: 200px;
        text-align: center;
    }
    
    /* Footer Mobile */
    .footer-links {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .footer-divider {
        display: none;
    }
    
    .social-icons {
        margin-bottom: 15px;
    }
    
    .social-icon {
        margin: 0 10px;
        font-size: 18px;
    }
    
    /* Contact Mobile */
    .contact-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 30px;
    }
    
    .contact-info h3,
    .contact-form-container h3 {
        font-size: 24px;
    }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text h3 {
        font-size: 14px;
    }
    
    .identity h3 {
        font-size: 24px;
    }
    
    .why-choose h2 {
        font-size: 24px;
    }
    
    .join-section h2 {
        font-size: 24px;
    }
    
    .feature-card,
    .benefit-text {
        padding: 20px 15px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .buttons {
        width: 100%;
    }
    
    .sign-up-btn,
    .about-btn {
        width: 100%;
        max-width: 250px;
    }
}