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

:root {
    --primary: #1e3a5f;
    --secondary: #3d5a80;
    --accent: #c9a227;
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.25s ease;
    --header-height: 70px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

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

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

.header.scrolled {
    box-shadow: var(--shadow);
}

.header .container {
    height: 100%;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-medium);
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background-color: var(--bg-light);
}

.nav-link.active {
    color: var(--primary);
    background-color: rgba(30, 58, 95, 0.08);
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

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

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

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

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

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

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

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

main {
    padding-top: var(--header-height);
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.92) 0%, rgba(61, 90, 128, 0.88) 100%);
}

.hero .container {
    width: 100%;
}

.hero-content {
    max-width: 680px;
    padding: 48px 0;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--bg-white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: #b8911f;
    border-color: #b8911f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

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

.btn-submit {
    width: 100%;
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

.btn-submit:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.page-banner {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    overflow: hidden;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 95, 0.7);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1,
.page-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.page-banner p,
.page-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.service-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-description {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent);
}

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

.service-detail {
    padding: 80px 0;
}

.service-detail.alt-bg {
    background-color: var(--bg-light);
}

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

.service-detail-grid.reverse {
    direction: rtl;
}

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

.service-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.service-detail-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.service-detail-content > p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.service-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.service-examples {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
}

.service-examples h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-examples ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.service-examples li {
    position: relative;
    padding-left: 16px;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.service-examples li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.why-choose-us {
    padding: 80px 0;
}

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

.benefit-item {
    text-align: center;
    padding: 32px 24px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--accent);
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.7;
}

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

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

.form-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.form-description {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--accent);
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-item address,
.contact-item a {
    font-size: 0.9375rem;
    color: var(--text-medium);
}

.contact-item a:hover {
    color: var(--primary);
}

.form-container {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group .required {
    color: #dc3545;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

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

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-status {
    padding: 16px;
    border-radius: var(--radius);
    text-align: center;
    font-size: 0.9375rem;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.5;
}

.checkbox-group label a {
    color: var(--primary);
    text-decoration: underline;
}

.form-message {
    padding: 16px;
    border-radius: var(--radius);
    font-size: 0.9375rem;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.footer-address {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-contact p {
    margin-bottom: 4px;
}

.footer-contact a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.cookie-content p {
    flex: 1;
    min-width: 200px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

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

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.cookie-modal-content {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.cookie-modal-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

.modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    border-radius: var(--radius);
    transition: var(--transition);
}

.modal-close:hover {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.cookie-modal-body {
    padding: 24px;
}

.cookie-option {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-option-header strong {
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.cookie-option p {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.cookie-always-on {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 10px;
    background-color: var(--bg-light);
    color: var(--text-medium);
    border-radius: 4px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: var(--border);
    transition: var(--transition);
    border-radius: 26px;
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--bg-white);
    transition: var(--transition);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.cookie-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    text-align: right;
}

.cookie-modal-footer .btn {
    padding: 10px 24px;
}

.company-overview,
.who-we-are-section {
    padding: 80px 0;
}

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

.overview-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.overview-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.overview-content p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

.mission-icon {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--accent);
}

.mission-icon svg {
    width: 64px;
    height: 64px;
}

.mission-statement {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.mission-content p:last-child {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.values-section {
    padding: 80px 0;
}

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

.value-card {
    text-align: center;
    padding: 32px 24px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

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

.value-icon {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--accent);
}

.value-icon svg {
    width: 48px;
    height: 48px;
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.value-card a {
    color: var(--primary);
    text-decoration: underline;
}

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

.what-we-do .service-item {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.what-we-do .service-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.what-we-do .service-image {
    height: 200px;
    overflow: hidden;
}

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

.what-we-do .service-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    padding: 20px 24px 8px;
}

.what-we-do .service-item p {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
    padding: 0 24px 24px;
}

.website-purpose-section {
    padding: 80px 0;
}

.website-purpose-section .values-grid {
    grid-template-columns: repeat(3, 1fr);
}

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

.industry-card {
    text-align: center;
    padding: 32px 24px;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.industry-icon {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--accent);
}

.industry-icon svg {
    width: 48px;
    height: 48px;
}

.industry-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.industry-card p {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.revenue-section {
    padding: 80px 0;
}

.revenue-section .service-item {
    text-align: center;
    padding: 32px 24px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.revenue-section .service-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-icon {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--accent);
}

.service-icon svg {
    width: 48px;
    height: 48px;
}

.revenue-section .service-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.revenue-section .service-item p {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.revenue-note {
    margin-top: 48px;
}

.note-box {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent);
}

.note-box h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.note-box p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

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

.data-collection-section .value-card {
    background-color: var(--bg-white);
}

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

.industries-section .section-title {
    color: var(--bg-white);
}

.industries-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

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

.industry-item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.industry-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
}

.industry-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.industry-item h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 16px 16px 8px;
}

.industry-item p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 16px 20px;
}

.quality-section {
    padding: 80px 0;
}

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

.quality-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.quality-text > p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

.quality-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.quality-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.125rem;
}

.quality-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.quality-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

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

.cta-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-section {
    padding: 80px 0;
}

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

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.contact-intro {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 32px;
}

.info-cards {
    display: grid;
    gap: 16px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: var(--radius);
}

.info-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: var(--radius);
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-content h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.info-content p,
.info-content a {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.contact-form-wrapper .contact-form {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-top: 8px;
}

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

.map-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.02em;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.legal-content,
.policy-content {
    padding: 80px 0;
}

.legal-meta {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.legal-meta p {
    font-size: 0.9375rem;
    color: var(--text-medium);
}

.table-of-contents {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 48px;
}

.table-of-contents h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.table-of-contents ul {
    columns: 2;
    column-gap: 24px;
}

.table-of-contents li {
    margin-bottom: 8px;
    break-inside: avoid;
}

.table-of-contents a {
    font-size: 0.9375rem;
    color: var(--text-medium);
}

.table-of-contents a:hover {
    color: var(--primary);
}

.legal-section,
.policy-section {
    margin-bottom: 40px;
}

.legal-section h2,
.policy-section h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.legal-section:first-of-type h2 {
    border-top: none;
    padding-top: 0;
}

.policy-section:first-of-type h2 {
    border-top: none;
    padding-top: 0;
}

.legal-section h3,
.policy-section h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 20px 0 8px;
}

.legal-section p,
.policy-section p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section ul,
.policy-section ul {
    margin: 12px 0;
    padding-left: 24px;
}

.legal-section li,
.policy-section li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.legal-section li::before,
.policy-section li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.legal-section a,
.policy-section a {
    color: var(--primary);
    text-decoration: underline;
}

.contact-info-block {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius);
    margin-top: 16px;
}

.contact-info-block p {
    margin-bottom: 4px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.active {
        max-height: 400px;
    }

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

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

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

    .nav-link {
        display: block;
        padding: 12px 24px;
        border-radius: 0;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: var(--bg-light);
    }

    .hero {
        min-height: 60vh;
    }

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

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

    .hero-cta .btn {
        width: 100%;
    }

    .page-banner {
        padding: 60px 0;
    }

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

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

    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-detail-image img {
        height: 280px;
    }

    .service-examples ul {
        grid-template-columns: 1fr;
    }

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

    .overview-image img {
        height: 280px;
    }

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

    .quality-image img {
        height: 280px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 16px;
    }

    .footer-nav-section {
        margin-bottom: 24px;
    }

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

    .form-container {
        padding: 24px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .table-of-contents ul {
        columns: 1;
    }

    .legal-meta {
        flex-direction: column;
        gap: 8px;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto;
    }
}

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

    .logo-text {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .service-card:hover,
    .benefit-item:hover,
    .value-card:hover,
    .industry-item:hover,
    .industry-card:hover {
        transform: none;
    }
}
