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

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

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

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

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

/* Header */
header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

nav a {
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #3498db;
}

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

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

.hero-content h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

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

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

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

.feature-card {
    text-align: center;
}

.feature-card img {
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.feature-card p {
    color: #666;
    font-size: 16px;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.link-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border: 2px solid #3498db;
    color: #3498db;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-button:hover {
    background-color: #3498db;
    color: #fff;
}

/* Page Header */
.page-header {
    padding: 60px 0 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #666;
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

.content-section.alt {
    background-color: #f8f9fa;
}

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

.content-layout.reverse {
    direction: rtl;
}

.content-layout.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.content-text p {
    font-size: 17px;
    color: #666;
    margin-bottom: 15px;
}

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

/* Values Grid */
.values-grid {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.value-card p {
    color: #666;
    font-size: 16px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.team-section > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

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

/* Services Intro */
.services-intro {
    padding: 60px 0;
}

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

.intro-text h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 17px;
    color: #666;
    margin-bottom: 15px;
}

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

/* Service List */
.service-list {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.service-item {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-item h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

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

.service-item ul li {
    color: #666;
    font-size: 15px;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-item ul li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #3498db;
    font-weight: bold;
}

/* Special Services */
.special-services {
    padding: 80px 0;
}

.special-services h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.special-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
}

.special-card img {
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.special-card p {
    color: #666;
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

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

.info-block h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.info-block p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.contact-info img {
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.contact-form h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
}

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

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

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

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

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #2980b9;
}

/* Visit Us Section */
.visit-us {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.visit-text h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.visit-text p {
    font-size: 17px;
    color: #666;
    margin-bottom: 15px;
}

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

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

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

.legal-text h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.legal-text ul {
    margin: 15px 0 20px 20px;
    color: #666;
}

.legal-text ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-text a {
    color: #3498db;
    text-decoration: underline;
}

.legal-text a:hover {
    color: #2980b9;
}

.update-date {
    margin-top: 50px;
    font-style: italic;
    color: #999;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: #bdc3c7;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container,
    .content-layout,
    .intro-layout,
    .contact-layout,
    .visit-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-layout.reverse {
        direction: ltr;
    }

    .feature-grid,
    .grid-three,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

@media (max-width: 768px) {
    nav {
        gap: 15px;
        font-size: 14px;
    }

    .logo {
        font-size: 20px;
    }

    .hero {
        padding: 50px 0;
    }

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

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

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

    .feature-grid,
    .grid-three,
    .service-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .content-text h2,
    .intro-text h2,
    .visit-text h2 {
        font-size: 28px;
    }

    .about-content h2,
    .values-grid h2,
    .team-section h2,
    .special-services h2,
    .cta-section h2 {
        font-size: 28px;
    }

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

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

    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .cta-button,
    .submit-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}
