/* 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 */
.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;
}

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

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

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

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

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

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

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

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

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

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

/* Button */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: #2c3e50;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #34495e;
    transform: translateY(-2px);
}

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

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

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 20px 20px 10px;
}

.card p {
    color: #666;
    margin: 0 20px 20px;
    font-size: 15px;
}

/* Info Section */
.info {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

.checklist {
    list-style: none;
}

.checklist li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
    font-size: 18px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 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.9;
}

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

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

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

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

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

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

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

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

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

/* Services List */
.services-list {
    padding: 60px 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

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

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

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

.service-content ul {
    list-style: none;
    margin-top: 20px;
}

.service-content li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-size: 20px;
}

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

/* Additional Section */
.additional {
    padding: 60px 0;
    background: #f8f9fa;
}

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

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

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

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

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

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

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

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

.info-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.info-box p {
    color: #555;
    font-size: 15px;
    margin-bottom: 10px;
}

/* Visit Section */
.visit {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.visit > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 16px;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin: 40px 0 20px;
}

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

.legal-content h3 {
    font-size: 22px;
    color: #34495e;
    margin: 30px 0 15px;
}

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

.legal-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    color: #555;
    margin-bottom: 8px;
}

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

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

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

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

footer p {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.8;
}

footer a {
    color: #bdc3c7;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
}

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

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

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

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

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

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

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

    nav ul {
        gap: 20px;
    }

    .hero {
        padding: 50px 0;
    }

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

    .features,
    .info,
    .values,
    .services-list,
    .additional,
    .contact-section,
    .visit {
        padding: 50px 0;
    }

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

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

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

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    nav a {
        font-size: 14px;
    }
}
