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

:root {
    --color-black: #0a0a0a;
    --color-dark: #1a1a1a;
    --color-gray-dark: #2a2a2a;
    --color-gray: #3a3a3a;
    --color-gray-light: #4a4a4a;
    --color-red: #dc2626;
    --color-red-dark: #991b1b;
    --color-red-light: #ef4444;
    --color-white: #ffffff;
    --color-off-white: #f5f5f5;
    --color-text-light: #a0a0a0;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-red-light);
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    color: var(--color-white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-red-light), var(--color-red));
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: var(--color-gray);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-gray-light);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-gray);
}

.btn-outline:hover {
    background: var(--color-gray);
    color: var(--color-white);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo:hover {
    color: var(--color-white);
}

.logo-icon {
    width: 45px;
    height: 45px;
}

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

.nav-menu a {
    color: var(--color-text-light);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

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

.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-black) 100%);
    text-align: center;
    border-bottom: 1px solid var(--color-gray);
}

.page-hero-subtitle {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.services-overview h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-intro {
    text-align: center;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.service-card {
    background: var(--color-gray-dark);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--color-gray);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--color-red);
}

.service-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.service-card h3 {
    padding: 20px 20px 10px;
    color: var(--color-white);
}

.service-card p {
    padding: 0 20px 20px;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.why-us {
    padding: 80px 0;
    background: var(--color-black);
}

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

.why-us-text h2 {
    margin-bottom: 1.5rem;
}

.why-us-text p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.why-us-list {
    list-style: none;
    margin-bottom: 2rem;
}

.why-us-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--color-text-light);
}

.why-us-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-red);
    border-radius: 50%;
}

.why-us-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.why-us-img img {
    width: 100%;
    height: auto;
}

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

.contact-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--color-gray-dark);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--color-gray);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--color-black);
    border: 1px solid var(--color-gray);
    border-radius: 4px;
    color: var(--color-white);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray-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='%23a0a0a0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--color-dark);
    color: var(--color-white);
}

.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;
    accent-color: var(--color-red);
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 15px;
}

.about-intro {
    padding: 80px 0;
    background: var(--color-dark);
}

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

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--color-text-light);
}

.about-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mission {
    padding: 60px 0;
    background: var(--color-black);
}

.mission-box {
    background: linear-gradient(135deg, var(--color-red-dark), var(--color-red));
    padding: 50px;
    border-radius: 8px;
    text-align: center;
}

.mission-box h2 {
    margin-bottom: 1rem;
}

.mission-statement {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 0;
}

.values {
    padding: 80px 0;
    background: var(--color-dark);
}

.values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--color-gray-dark);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--color-gray);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--color-red);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--color-red);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    margin-bottom: 10px;
}

.value-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.about-cta {
    padding: 80px 0;
    background: var(--color-black);
}

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

.cta-content p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

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

.service-item {
    margin-bottom: 80px;
}

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

.service-item-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-item-content.reverse .service-item-img {
    order: 2;
}

.service-item-content.reverse .service-item-text {
    order: 1;
}

.service-item-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-item-img img {
    width: 100%;
    height: auto;
}

.service-item-text h2 {
    color: var(--color-red);
    margin-bottom: 1rem;
}

.service-item-text p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--color-text-light);
}

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

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

.cta-box {
    background: var(--color-gray-dark);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--color-gray);
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

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

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

.contact-info-card {
    background: var(--color-gray-dark);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--color-gray);
    margin-bottom: 30px;
}

.contact-info-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-card address {
    font-style: normal;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-red);
    margin-top: 3px;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--color-white);
}

.info-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.hours-card {
    background: var(--color-gray-dark);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--color-gray);
}

.hours-card h3 {
    margin-bottom: 1rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 10px 0;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-gray);
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table td:last-child {
    text-align: right;
}

.hours-note {
    font-size: 0.85rem;
    color: var(--color-gray-light);
    margin-top: 15px;
    margin-bottom: 0;
}

.contact-form-section {
    background: var(--color-gray-dark);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--color-gray);
}

.contact-form-section h2 {
    margin-bottom: 0.5rem;
}

.contact-form-section > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

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

.map-section h2 {
    margin-bottom: 1.5rem;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-gray);
}

.map-wrapper iframe {
    display: block;
}

.business-content,
.legal-content {
    padding: 80px 0;
    background: var(--color-dark);
}

.business-section {
    background: var(--color-gray-dark);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid var(--color-gray);
}

.business-section:last-child {
    margin-bottom: 0;
}

.business-section h2 {
    color: var(--color-red);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.business-section h3 {
    margin-top: 1.5rem;
}

.audience-grid,
.revenue-model {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 1.5rem;
}

.audience-item,
.revenue-item {
    background: var(--color-black);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--color-gray);
}

.audience-item h3,
.revenue-item h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.audience-item p,
.revenue-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.data-list {
    list-style: none;
    padding-left: 0;
}

.data-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray);
    color: var(--color-text-light);
}

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

.business-cta {
    padding: 80px 0;
    background: var(--color-black);
}

.legal-document {
    background: var(--color-gray-dark);
    padding: 50px;
    border-radius: 8px;
    border: 1px solid var(--color-gray);
}

.legal-document article {
    margin-bottom: 40px;
}

.legal-document article:last-child {
    margin-bottom: 0;
}

.legal-document h2 {
    color: var(--color-red);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.legal-document h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.legal-document p,
.legal-document li {
    color: var(--color-text-light);
    line-height: 1.8;
}

.legal-document ul {
    list-style: none;
    padding-left: 0;
}

.legal-document ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.legal-document ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 6px;
    height: 6px;
    background: var(--color-red);
    border-radius: 50%;
}

.effective-date,
.last-updated {
    margin-bottom: 30px;
}

.contact-address {
    background: var(--color-black);
    padding: 20px;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-address p {
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookie-table th {
    background: var(--color-black);
    color: var(--color-white);
    font-weight: 600;
}

.cookie-table td {
    color: var(--color-text-light);
}

.footer {
    background: var(--color-black);
    border-top: 1px solid var(--color-gray);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-gray);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-logo:hover {
    color: var(--color-white);
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-tagline {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--color-white);
}

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

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

.footer-links a {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

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

.footer-contact address {
    font-style: normal;
}

.footer-contact p {
    margin-bottom: 8px;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.footer-contact strong {
    color: var(--color-white);
}

.footer-legal {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-gray);
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
}

.legal-links a {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: var(--color-red);
}

.footer-disclaimer {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-gray);
}

.footer-disclaimer p {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-gray-light);
    margin-bottom: 0;
}

.footer-copyright {
    padding-top: 20px;
    text-align: center;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-gray-dark);
    border-top: 1px solid var(--color-gray);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

.cookie-customize {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-gray);
}

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

.cookie-category {
    background: var(--color-black);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.cookie-category:last-of-type {
    margin-bottom: 20px;
}

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

.category-header h4 {
    font-size: 1rem;
    margin-bottom: 0;
}

.badge {
    background: var(--color-gray);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.cookie-category p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

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

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

.toggle .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-gray);
    transition: var(--transition);
    border-radius: 26px;
}

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

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

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

.cookie-customize-actions {
    text-align: center;
}

@media (max-width: 992px) {
    .why-us-content,
    .about-content,
    .service-item-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-item-content.reverse .service-item-img,
    .service-item-content.reverse .service-item-text {
        order: unset;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        transform: translateX(-100%);
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

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

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

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

    .footer-links {
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form-section {
        padding: 30px 20px;
    }

    .legal-document {
        padding: 30px 20px;
    }

    .business-section {
        padding: 30px 20px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .mission-box {
        padding: 30px 20px;
    }

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

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

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    .container {
        padding: 0 15px;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .services-overview,
    .why-us,
    .contact-section,
    .about-intro,
    .values,
    .services-detail,
    .contact-page,
    .business-content,
    .legal-content {
        padding: 50px 0;
    }

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