/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

/* Header */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #1a5490;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a5490 0%, #2d6ca8 100%);
    color: #ffffff;
    padding: 100px 0;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ffffff;
    color: #1a5490;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Intro Section */
.intro {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a5490;
}

.intro p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a5490;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a5490;
}

.feature-card p {
    color: #555;
    line-height: 1.7;
}

/* Visual Section */
.visual-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.visual-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.visual-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a5490;
}

.visual-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a5490 0%, #2d6ca8 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a5490 0%, #2d6ca8 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

/* About Page */
.about-intro, .mission, .approach, .values, .services-intro, .services-list, .process {
    padding: 80px 0;
}

.about-intro {
    background-color: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a5490;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission {
    text-align: center;
}

.mission h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a5490;
}

.mission-text {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
    line-height: 1.7;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mission-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.mission-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a5490;
}

.mission-item p {
    color: #555;
    line-height: 1.7;
}

.approach {
    background-color: #f8f9fa;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a5490;
}

.approach-text p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.values h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a5490;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a5490;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.team-visual {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-visual img {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Page */
.services-intro {
    background-color: #f8f9fa;
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a5490;
}

.services-text p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-list h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a5490;
}

.service-item {
    margin-bottom: 60px;
}

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

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-item.reverse .service-content {
    direction: rtl;
}

.service-item.reverse .service-text,
.service-item.reverse .service-image {
    direction: ltr;
}

.service-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a5490;
}

.service-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.service-text ul {
    list-style: none;
    padding-left: 0;
}

.service-text li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.service-text li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: bold;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process {
    background-color: #f8f9fa;
}

.process h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a5490;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 15px;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a5490;
}

.process-step p {
    color: #555;
    line-height: 1.7;
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2,
.contact-form h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a5490;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a5490;
    font-weight: 600;
}

.info-block p {
    color: #555;
    line-height: 1.7;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5490;
}

.submit-button {
    padding: 15px 35px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
    background-color: #144072;
    transform: translateY(-2px);
}

.contact-visual {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.location {
    padding: 80px 0;
}

.location h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
    color: #1a5490;
}

.location-text {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
    line-height: 1.7;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.location-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.location-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a5490;
}

.location-item p {
    color: #555;
    line-height: 1.7;
}

.faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a5490;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a5490;
    font-weight: 600;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a5490;
}

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

.legal-text h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a5490;
}

.legal-text h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1a5490;
}

.legal-text p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-text li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.8;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    color: #c5d0db;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

.footer-column a {
    color: #c5d0db;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #c5d0db;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .intro-grid,
    .visual-grid,
    .about-grid,
    .approach-grid,
    .services-intro-grid,
    .service-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-item.reverse .service-content {
        direction: ltr;
    }

    h2 {
        font-size: 28px;
    }

    .features-grid,
    .mission-grid,
    .values-grid,
    .process-grid,
    .location-details,
    .faq-grid {
        grid-template-columns: 1fr;
    }

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