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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Header */
header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2c5282;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
}

nav a:hover,
nav a.active {
    color: #2c5282;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 80px 0;
}

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

.hero-content h1 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: #2c5282;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #1a365d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44,82,130,0.3);
}

.btn-secondary {
    background: #fff;
    color: #2c5282;
    border: 2px solid #2c5282;
}

.btn-secondary:hover {
    background: #2c5282;
    color: #fff;
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.feature-card h3 {
    padding: 20px 24px 10px;
    color: #1a365d;
    font-size: 22px;
}

.feature-card p {
    padding: 0 24px 24px;
    color: #4a5568;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

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

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

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

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

/* Content Sections */
.content-section,
.team-section,
.approach,
.services-overview,
.additional-services,
.process-section {
    padding: 80px 0;
}

.content-section:nth-child(even),
.team-section:nth-child(even) {
    background: #f9fafb;
}

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

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.two-column .column h2 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 20px;
}

.two-column .column p {
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.8;
}

.two-column img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Values Section */
.values {
    padding: 80px 0;
    background: #f9fafb;
}

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

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    color: #2c5282;
    font-size: 24px;
    margin-bottom: 15px;
}

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

/* Approach Section */
.approach h2 {
    text-align: center;
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 50px;
}

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

.approach-image img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.approach-list {
    list-style: none;
}

.approach-list li {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #4a5568;
    line-height: 1.7;
}

.approach-list li:last-child {
    border-bottom: none;
}

.approach-list strong {
    color: #2c5282;
    font-size: 18px;
}

/* Services Page */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-content h2 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 20px;
}

.service-content p {
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-content ul {
    list-style: none;
}

.service-content ul li {
    padding: 10px 0 10px 30px;
    color: #4a5568;
    position: relative;
}

.service-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: bold;
}

.service-image img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.services-grid {
    padding: 80px 0;
    background: #f9fafb;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-card h3 {
    padding: 24px 30px 10px;
    color: #1a365d;
    font-size: 24px;
}

.service-card > p {
    padding: 0 30px 20px;
    color: #4a5568;
    line-height: 1.7;
}

.service-features {
    padding: 0 30px 30px;
}

.service-features li {
    padding: 8px 0 8px 25px;
    color: #4a5568;
    position: relative;
    font-size: 15px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: bold;
}

.additional-services {
    padding: 80px 0;
}

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

.additional-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.additional-card {
    background: #f9fafb;
    padding: 35px 30px;
    border-radius: 8px;
    border-left: 4px solid #2c5282;
}

.additional-card h3 {
    color: #1a365d;
    font-size: 22px;
    margin-bottom: 12px;
}

.additional-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Process Section */
.process-section {
    background: #f9fafb;
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2c5282;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: #1a365d;
    font-size: 20px;
    margin-bottom: 12px;
}

.process-step p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 15px;
}

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

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

.contact-info h2 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 20px;
}

.contact-info > p {
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    color: #2c5282;
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-image {
    margin-top: 40px;
}

.contact-image img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact-form-wrapper {
    background: #f9fafb;
    padding: 40px;
    border-radius: 8px;
}

.contact-form h3 {
    font-size: 28px;
    color: #1a365d;
    margin-bottom: 10px;
}

.form-description {
    color: #4a5568;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #1a365d;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    color: #4a5568;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 4px;
}

.checkbox-group a {
    color: #2c5282;
    text-decoration: underline;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: #f9fafb;
}

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

.location-text h2 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 20px;
}

.location-text p {
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.8;
}

.location-image img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: #1a365d;
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

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

.content-wrapper h3 {
    color: #2c5282;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-wrapper h4 {
    color: #2c5282;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
}

.content-wrapper p {
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-wrapper ul {
    margin: 15px 0;
    padding-left: 25px;
}

.content-wrapper ul li {
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.7;
    list-style: disc;
}

.content-wrapper a {
    color: #2c5282;
    text-decoration: underline;
}

.last-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-style: italic;
}

/* Footer */
footer {
    background: #1a365d;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.7);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container,
    .two-column,
    .approach-content,
    .service-detail,
    .contact-grid,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-grid,
    .value-grid {
        grid-template-columns: 1fr;
    }

    .service-cards,
    .additional-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-content h1,
    .page-header h1 {
        font-size: 32px;
    }

    nav ul {
        gap: 20px;
    }
}

@media (max-width: 640px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        gap: 15px;
        font-size: 14px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .features,
    .content-section,
    .values,
    .approach,
    .services-overview,
    .additional-services,
    .process-section,
    .contact-content,
    .location-section {
        padding: 50px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .cta h2,
    .values h2,
    .approach h2,
    .additional-services h2,
    .process-section h2 {
        font-size: 26px;
    }
}
