*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #1a365d;
    --primary-dark: #0f2340;
    --primary-light: #2d4a7c;
    --accent-color: #e67e22;
    --accent-hover: #d35400;
    --text-dark: #1a1a2e;
    --text-medium: #4a4a5a;
    --text-light: #6b6b7b;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #e9ecef;
    --border-color: #dee2e6;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-dark: 0 8px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-full {
    width: 100%;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-light);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-color);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
}

.logo-text span {
    color: var(--accent-color);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.mobile-menu-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 120px 20px 60px;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.page-header p {
    font-size: clamp(16px, 2.5vw, 20px);
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    color: var(--bg-white);
}

.page-header .last-updated {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 12px;
    color: var(--bg-white);
}

.breadcrumb {
    background-color: var(--bg-light);
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
}

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

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-medium);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb li:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

.section {
    padding: 80px 0;
}

.section-light {
    background-color: var(--bg-light);
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-title h2,
.section-subtitle p {
    margin: 0;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(15, 35, 64, 0.88) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    padding: 60px 0;
    color: var(--bg-white);
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.services {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.service-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(230, 126, 34, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 0 4px;
}

.service-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-hover);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.service-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-medium);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

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

.about-text h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.6;
}

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

.location-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.location-info p {
    color: var(--text-medium);
    margin-bottom: 12px;
}

.location-advantages {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.location-advantages li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-medium);
}

.location-advantages li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.location-image {
    border-radius: 12px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: auto;
    display: block;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.capability-item {
    text-align: center;
    padding: 32px 20px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.capability-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.capability-item p {
    color: var(--text-medium);
    font-weight: 500;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.cta-section p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 32px;
    color: var(--bg-white);
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.contact {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
}

.info-item {
    margin-bottom: 24px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 16px;
    line-height: 1.5;
}

.info-note {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 4px;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-dark);
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%234a4a5a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 0;
    cursor: pointer;
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

.form-group .error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 6px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.business-hours {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
}

.business-hours h3 {
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.business-hours h3 svg {
    width: 18px;
    height: 18px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.contact-info-card h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 24px;
}

.contact-info-card .info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-card .info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-card .info-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(26, 54, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.contact-info-card .info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-card .info-content h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.contact-info-card .info-content p,
.contact-info-card .info-content a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 15px;
}

.contact-info-card .info-content a:hover {
    color: var(--primary-color);
}

.map-section {
    margin-top: 48px;
}

.map-section h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 24px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.content-section {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-light);
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-gray);
}

.content-section h3 {
    color: var(--primary-light);
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
}

.content-section p {
    margin-bottom: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.content-section ul {
    margin: 16px 0 16px 24px;
}

.content-section li {
    margin-bottom: 8px;
    color: var(--text-medium);
    line-height: 1.6;
}

.content-section strong {
    color: var(--text-dark);
}

.highlight-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin: 16px 0;
}

.highlight-box p {
    margin-bottom: 0;
    color: #856404;
}

.contact-box {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 16px;
}

.contact-box h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 0;
}

.contact-box p {
    margin-bottom: 8px;
    color: var(--text-medium);
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.info-box {
    background: linear-gradient(135deg, #e8f4f8 0%, #dbeafe 100%);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-light);
    margin: 16px 0;
}

.info-box p {
    color: #1e40af;
    margin-bottom: 0;
}

.commitment-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
}

.commitment-box h2 {
    color: var(--bg-white);
    border-bottom: none;
    margin-bottom: 12px;
}

.commitment-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 0;
}

.standards-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(230, 126, 34, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    margin: 16px 0;
    font-weight: 600;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.feature-card {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-light);
}

.feature-card h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 8px;
}

.feature-card p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-medium);
}

.improvement-list {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin: 16px 0;
}

.improvement-list ul {
    margin: 0 0 0 24px;
    padding: 0;
}

.cookie-table,
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.cookie-table th,
.cookie-table td,
.data-table th,
.data-table td {
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    text-align: left;
}

.cookie-table th,
.data-table th {
    background-color: var(--bg-light);
    color: var(--primary-color);
    font-weight: 600;
}

.cookie-table tr:nth-child(even),
.data-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

.cookie-table tr:last-child td,
.data-table tr:last-child td {
    border-bottom: none;
}

.business-section {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    margin-bottom: 24px;
}

.business-section h2 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.section-icon svg {
    width: 20px;
    height: 20px;
}

.business-section p {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.business-section ul {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.business-section ul li {
    padding: 12px 0 12px 24px;
    position: relative;
    color: var(--text-medium);
}

.business-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.card {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.card h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-medium);
    font-size: 15px;
    margin-bottom: 0;
}

.revenue-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.revenue-section h2 {
    color: var(--bg-white);
    margin-bottom: 20px;
}

.revenue-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.revenue-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.revenue-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.revenue-item h4 {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 8px;
}

.revenue-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin-bottom: 0;
}

.intro-section {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    margin-bottom: 24px;
    text-align: center;
}

.intro-section h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 16px;
}

.intro-section p {
    color: var(--text-medium);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.footer {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-icon {
    background-color: var(--accent-color);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 16px;
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 14px;
    opacity: 0.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-legal {
    padding: 24px 0;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.6;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.copyright {
    font-size: 14px;
    opacity: 0.8;
    color: var(--bg-white);
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.thank-you {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background-color: rgba(39, 174, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #27ae60;
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
}

.thank-you h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.thank-you-message {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 12px;
    line-height: 1.6;
}

.thank-you-note {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thank-you-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.thank-you-note a:hover {
    text-decoration: underline;
}

.map-section-wrapper {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.map-section-wrapper .section-title {
    color: var(--primary-color);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.map-section-wrapper .section-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 32px;
}

.map-section-wrapper .map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-section-wrapper .map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.cookie-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-modal.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px 20px;
}

.cookie-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.cookie-content > p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-options {
    margin-bottom: 20px;
}

.cookie-option {
    margin-bottom: 12px;
    padding: 12px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.cookie-option span {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-desc {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 6px;
    margin-left: 28px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 12px 20px;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-detail-image {
        order: -1;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .location-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        padding: 20px;
        box-shadow: var(--shadow-medium);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li {
        border-bottom: 1px solid var(--border-color);
    }

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

    .nav-list a {
        display: block;
        padding: 14px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .page-header {
        padding: 100px 20px 40px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        text-align: center;
    }

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

    .contact-info {
        order: 2;
    }

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

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

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

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
        text-align: center;
    }

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

    .section {
        padding: 60px 0;
    }

    .content-section,
    .business-section,
    .intro-section {
        padding: 24px;
    }

    .cookie-table,
    .data-table {
        font-size: 12px;
    }

    .cookie-table th,
    .cookie-table td,
    .data-table th,
    .data-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }

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

    .service-card {
        padding: 24px;
    }

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

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

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

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