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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1d4ed8;
}

a:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a2e;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    border: 2px solid transparent;
}

.btn:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1a1a2e;
}

.logo:hover {
    color: #2563eb;
}

.logo-icon {
    font-size: 1.5rem;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #4b5563;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2563eb;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1a1a2e;
    position: relative;
    transition: background-color 0.2s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #1a1a2e;
    left: 0;
    transition: transform 0.2s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

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

.mobile-menu-toggle.active .hamburger::before {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    padding: 60px 0;
    background-color: #f8fafc;
}

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

.hero-text h1 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 32px;
}

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

.hero-image img {
    border-radius: 12px;
    object-fit: cover;
    max-height: 400px;
    width: 100%;
}

.about-preview {
    padding: 80px 0;
}

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

.about-preview-image img {
    border-radius: 12px;
    object-fit: cover;
    height: 400px;
    width: 100%;
}

.about-preview-text h2 {
    margin-bottom: 20px;
}

.about-preview-text p {
    color: #4b5563;
    margin-bottom: 24px;
}

.services-overview {
    padding: 80px 0;
    background-color: #f8fafc;
}

.section-title {
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #4b5563;
    margin-bottom: 48px;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

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

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

.service-card h3 {
    padding: 24px 24px 12px;
}

.service-card p {
    padding: 0 24px 16px;
    color: #4b5563;
}

.link-arrow {
    display: inline-block;
    padding: 0 24px 24px;
    color: #2563eb;
    font-weight: 600;
}

.link-arrow:hover {
    color: #1d4ed8;
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

.industries {
    padding: 80px 0;
}

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

.industry-item {
    text-align: center;
    padding: 32px 24px;
    background-color: #f8fafc;
    border-radius: 12px;
    transition: background-color 0.2s ease;
}

.industry-item:hover {
    background-color: #eff6ff;
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.industry-item h3 {
    margin-bottom: 12px;
}

.industry-item p {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.why-choose {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.why-choose-text h2 {
    margin-bottom: 32px;
}

.benefits-list {
    list-style: none;
    margin-left: 0;
}

.benefits-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-color: #dcfce7;
    color: #166534;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.benefits-list li div strong {
    display: block;
    margin-bottom: 4px;
}

.benefits-list li div p {
    color: #4b5563;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.why-choose-image img {
    border-radius: 12px;
    object-fit: cover;
    height: 450px;
    width: 100%;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #1a1a2e;
    color: #ffffff;
}

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

.contact-form-info h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-form-info p {
    color: #94a3b8;
    margin-bottom: 32px;
}

.contact-details {
    margin-top: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
}

.contact-item p {
    margin-bottom: 0;
    color: #94a3b8;
}

.contact-item a {
    color: #60a5fa;
}

.contact-item a:hover {
    color: #93c5fd;
}

.contact-form {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.checkbox-group label a {
    color: #2563eb;
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
}

.page-header {
    padding: 60px 0;
    background-color: #1a1a2e;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    margin-bottom: 12px;
}

.page-header-subtitle {
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 0;
}

.about-main {
    padding: 80px 0;
}

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

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    color: #4b5563;
}

.about-image img {
    border-radius: 12px;
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.about-what-we-do {
    padding: 80px 0;
    background-color: #f8fafc;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.what-we-do-item {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.what-we-do-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.what-we-do-item h3 {
    margin-bottom: 12px;
}

.what-we-do-item p {
    color: #4b5563;
    margin-bottom: 0;
}

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

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

.values-image img {
    border-radius: 12px;
    height: 450px;
    object-fit: cover;
    width: 100%;
}

.values-text h2 {
    margin-bottom: 32px;
}

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

.value-item h3 {
    margin-bottom: 8px;
    color: #2563eb;
}

.value-item p {
    color: #4b5563;
    margin-bottom: 0;
}

.service-area {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.service-area-content p {
    color: #4b5563;
}

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

.service-area-item {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.service-area-item h4 {
    margin-bottom: 8px;
}

.service-area-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cta-section {
    padding: 80px 0;
    background-color: #2563eb;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-content p {
    color: #bfdbfe;
    margin-bottom: 32px;
}

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

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #2563eb;
    border-color: #ffffff;
}

.cta-section .btn-primary:hover {
    background-color: #f0f9ff;
    border-color: #f0f9ff;
}

.cta-section .btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.cta-section .btn-secondary:hover {
    background-color: #ffffff;
    color: #2563eb;
}

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

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

.contact-info-section h2 {
    margin-bottom: 16px;
}

.contact-info-section > p {
    color: #4b5563;
    margin-bottom: 32px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-info-card {
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.contact-info-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-note {
    font-size: 0.85rem;
    color: #9ca3af;
}

.contact-form-section-page h2 {
    margin-bottom: 12px;
}

.contact-form-section-page > p {
    color: #4b5563;
    margin-bottom: 24px;
}

.contact-form-section-page .contact-form {
    background-color: #f8fafc;
}

.map-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    margin-bottom: 20px;
}

.map-address {
    text-align: center;
    color: #4b5563;
}

.services-intro {
    padding: 40px 0;
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #4b5563;
}

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

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

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

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

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

.service-detail-image img {
    border-radius: 12px;
    height: 350px;
    object-fit: cover;
    width: 100%;
}

.service-detail-content h2 {
    margin-bottom: 16px;
}

.service-detail-content p {
    color: #4b5563;
}

.service-detail-content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.service-list {
    list-style: none;
    margin-left: 0;
    margin-bottom: 16px;
}

.service-list li {
    position: relative;
    padding-left: 20px;
    color: #4b5563;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.work-examples {
    padding: 80px 0;
    background-color: #f8fafc;
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.work-gallery-item {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.work-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.work-gallery-caption {
    padding: 24px;
}

.work-gallery-caption h3 {
    margin-bottom: 8px;
}

.work-gallery-caption p {
    color: #4b5563;
    margin-bottom: 0;
}

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

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

.industry-detail-item {
    text-align: center;
    padding: 32px 24px;
    background-color: #f8fafc;
    border-radius: 12px;
}

.industry-detail-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.industry-detail-item h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.industry-detail-item p {
    color: #4b5563;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.legal-content {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.legal-content p {
    color: #4b5563;
}

.legal-content ul {
    color: #4b5563;
}

.legal-effective-date {
    color: #4b5563;
    margin-bottom: 32px;
}

.contact-block {
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    margin-top: 16px;
}

.contact-block p {
    margin-bottom: 0;
}

.data-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.data-table th,
.data-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.data-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #1a1a2e;
}

.data-table td {
    color: #4b5563;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.cookie-table th {
    background-color: #f8fafc;
    font-weight: 600;
}

.cookie-table td {
    color: #4b5563;
}

.business-model-content {
    padding: 80px 0;
}

.business-section {
    margin-bottom: 60px;
}

.business-section h2 {
    margin-bottom: 20px;
}

.business-section > p {
    color: #4b5563;
}

.business-activities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.activity-item {
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.activity-item h3 {
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.activity-item p {
    color: #4b5563;
    margin-bottom: 0;
}

.customer-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.customer-type {
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.customer-type h3 {
    margin-bottom: 8px;
    color: #2563eb;
}

.customer-type p {
    color: #4b5563;
    margin-bottom: 0;
}

.revenue-model {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.revenue-item {
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.revenue-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.revenue-item h3 {
    margin-bottom: 8px;
}

.revenue-item p {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.commitment-item {
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.commitment-item h3 {
    margin-bottom: 8px;
    color: #2563eb;
}

.commitment-item p {
    color: #4b5563;
    margin-bottom: 0;
}

.footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 0 0;
}

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

.footer-section h3 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.footer-section h4 {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-section p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-section a {
    color: #94a3b8;
}

.footer-section a:hover {
    color: #60a5fa;
}

.footer-links {
    list-style: none;
    margin-left: 0;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 24px 0;
    text-align: center;
}

.legal-disclaimer {
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.footer-legal {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.footer-legal a {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: #60a5fa;
}

.copyright {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.cookie-banner-text {
    text-align: center;
}

.cookie-banner-text p {
    margin-bottom: 0;
    color: #94a3b8;
    font-size: 0.95rem;
}

.cookie-banner-text a {
    color: #60a5fa;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.cookie-banner-buttons .btn-accept {
    background-color: #2563eb;
    border-color: #2563eb;
}

.cookie-banner-buttons .btn-reject {
    background-color: transparent;
    border-color: #94a3b8;
    color: #94a3b8;
}

.cookie-banner-buttons .btn-reject:hover {
    background-color: #94a3b8;
    color: #1a1a2e;
}

.cookie-banner-buttons .btn-customize {
    background-color: transparent;
    border-color: #94a3b8;
    color: #94a3b8;
}

.cookie-banner-buttons .btn-customize:hover {
    background-color: #94a3b8;
    color: #1a1a2e;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #ffffff;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
}

.cookie-modal-content h2 {
    margin-bottom: 16px;
}

.cookie-modal-content p {
    color: #4b5563;
    margin-bottom: 24px;
}

.cookie-preferences {
    margin-bottom: 24px;
}

.preference-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.preference-item:last-child {
    border-bottom: none;
}

.preference-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.preference-info p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0;
}

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

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    border-radius: 26px;
    transition: background-color 0.2s ease;
}

.toggle-slider::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #2563eb;
}

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

.toggle-switch input:disabled + .toggle-slider {
    background-color: #94a3b8;
    cursor: not-allowed;
}

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

.cookie-modal-buttons .btn {
    flex: 1;
}

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

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-height: 250px;
    }
    
    .about-preview-content,
    .about-content,
    .why-choose-content,
    .values-content,
    .contact-form-wrapper,
    .contact-page-grid,
    .service-detail-item,
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-item.reverse {
        direction: ltr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid,
    .industries-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-area-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .work-gallery {
        grid-template-columns: 1fr;
    }
    
    .business-activities,
    .customer-types,
    .revenue-model,
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        padding-bottom: 24px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
    
    .cookie-banner-content {
        padding: 0;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-banner-buttons .btn {
        width: 100%;
    }
    
    .contact-form {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .about-preview,
    .services-overview,
    .industries,
    .why-choose,
    .contact-form-section,
    .about-main,
    .about-what-we-do,
    .values-section,
    .service-area,
    .cta-section,
    .contact-page,
    .services-intro,
    .services-detail,
    .work-examples,
    .service-industries,
    .map-section,
    .business-model-content,
    .legal-content {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}
