/* 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: #1f2937;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services-section {
    padding: 64px 0;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

/* Image Column */
.image-column {
    order: 2;
}

.image-wrapper {
    position: relative;
}

.services-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Content Column */
.content-column {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Headings */
.heading-section {
    margin-bottom: 0;
}

.main-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.sub-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 24px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

/* Text Styles */
.intro-text,
.section-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
}

/* Principles Section */
.principles-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.principle-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: #ffffff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.principle-icon {
    background-color: #111827;
    border-radius: 50%;
    padding: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle-icon .icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
    stroke-width: 2;
}

.principle-content {
    flex: 1;
}

.principle-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.principle-text {
    color: #374151;
    line-height: 1.75;
}

/* Office Badges */
.office-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0;
}

.office-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #111827;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
}

.badge-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.badge-text {
    font-weight: 600;
}

/* Documents List */
.documents-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.document-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.document-icon {
    flex-shrink: 0;
    margin-top: 4px;
}

.list-icon {
    width: 20px;
    height: 20px;
    color: #111827;
    stroke-width: 2;
}

.document-text {
    color: #374151;
    line-height: 1.75;
}

/* Events Section */
.events-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.events-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icon {
    width: 32px;
    height: 32px;
    color: #111827;
    stroke-width: 2;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-icon {
    flex-shrink: 0;
    margin-top: 4px;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #16a34a;
    stroke-width: 2;
}

.benefit-text {
    color: #374151;
    line-height: 1.75;
}

/* CTA Box */
.cta-box {
    background-color: #111827;
    color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin-top: 24px;
}

.cta-text {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.cta-highlight {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Responsive Design */
@media (min-width: 640px) {
    .container {
        padding: 0 24px;
    }
}

@media (min-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .main-title {
        font-size: 2.25rem;
    }

    .sub-title {
        font-size: 1.875rem;
    }

    .section-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        height: 100vh;
    }

    .container {
        padding: 0 32px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

    .image-column {
        order: 1;
    }

    .content-column {
        order: 2;
    }
}