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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header and Navigation */
header {
    background-color: #1F3A5F;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1F3A5F 0%, #4A6FA5 100%);
    color: #fff;
    padding: 4rem 0;
}

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

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

/* Buttons */
.btn, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn {
    background-color: #FF6B35;
    color: #fff;
}

.btn:hover {
    background-color: #E85A2A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #1F3A5F;
    border: 2px solid #1F3A5F;
}

.btn-secondary:hover {
    background-color: #1F3A5F;
    color: #fff;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1F3A5F;
}

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

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.feature-card h3 {
    color: #1F3A5F;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* About Preview Section */
.about-preview {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.about-text h2 {
    color: #1F3A5F;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: #555;
}

/* Services Preview Section */
.services-preview {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1F3A5F;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #1F3A5F;
    font-size: 1.3rem;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1F3A5F 0%, #4A6FA5 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-text h2 {
    color: #1F3A5F;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content-text p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

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

/* Values Section */
.values-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1F3A5F;
}

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

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.value-card h3 {
    color: #FF6B35;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

/* Approach Section */
.approach-section {
    padding: 4rem 0;
}

.approach-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.approach-text h2 {
    color: #1F3A5F;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.approach-text p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1F3A5F;
}

.team-section img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #555;
    line-height: 1.8;
}

/* Services Detailed Section */
.services-detailed {
    padding: 3rem 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

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

.service-item.reverse > * {
    direction: ltr;
}

.service-content h2 {
    color: #1F3A5F;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

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

.service-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

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

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

/* Process Section */
.process-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1F3A5F;
}

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

.process-step {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: #FF6B35;
    margin-bottom: 1rem;
}

.process-step h3 {
    color: #1F3A5F;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.process-step p {
    color: #555;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, #1F3A5F 0%, #4A6FA5 100%);
    color: #fff;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h2 {
    color: #1F3A5F;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: #1F3A5F;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: #555;
    line-height: 1.8;
}

/* Contact Form */
.contact-form h2 {
    color: #1F3A5F;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

/* Contact Image Section */
.contact-image-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

/* Company Info Section */
.company-info-section {
    padding: 3rem 0;
}

.company-info-section h2 {
    color: #1F3A5F;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.company-details {
    max-width: 700px;
    margin: 0 auto;
}

.company-details p {
    margin-bottom: 0.75rem;
    color: #555;
    text-align: center;
}

/* Legal Content */
.legal-content {
    padding: 3rem 0;
}

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

.legal-text h2 {
    color: #1F3A5F;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.legal-text h3 {
    color: #1F3A5F;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.legal-text p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.legal-text ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-text ul li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.8;
}

.last-updated {
    margin-top: 2rem;
    font-style: italic;
    color: #777;
}

.faq-content h2 {
    margin-top: 2.5rem;
}

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

/* Footer */
footer {
    background-color: #1F3A5F;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

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

.footer-bottom p {
    opacity: 0.8;
}

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

    .hero .container,
    .about-content,
    .content-layout,
    .approach-layout,
    .service-item,
    .contact-layout {
        grid-template-columns: 1fr;
    }

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

    .hero-content h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1,
    .page-header h1 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .features,
    .services-preview,
    .content-section,
    .values-section,
    .approach-section,
    .team-section,
    .process-section,
    .contact-section,
    .legal-content {
        padding: 2rem 0;
    }
}
