:root {
    --primary: #1a3a5c;
    --secondary: #e85a4f;
    --accent: #f4a259;
    --dark: #0d1b2a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --soft-blue: #e8f0f7;
    --cream: #fdf6e9;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

header {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.header-top {
    background: var(--primary);
    padding: 8px 0;
    font-size: 0.85rem;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-top span {
    color: rgba(255,255,255,0.85);
}

.header-main {
    padding: 15px 0;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

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

nav {
    display: flex;
    align-items: center;
}

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

nav a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #fff;
}

.nav-cta {
    background: var(--secondary);
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 4px;
    margin-left: 15px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: #d14a40;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 2000;
    flex-direction: column;
    padding: 80px 30px 30px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.mobile-nav a {
    color: #fff;
    font-size: 1.3rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
}

.hero-text {
    flex: 1;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 550px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image-main {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.hero-image-float {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.hero-image-float.top-left {
    top: -20px;
    left: -30px;
}

.hero-image-float.bottom-right {
    bottom: -15px;
    right: -25px;
}

.hero-image-float-icon {
    width: 40px;
    height: 40px;
    background: var(--soft-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.hero-image-float-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--secondary);
    color: #fff;
}

.btn-primary:hover {
    background: #d14a40;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 90, 79, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-accent {
    background: var(--accent);
    color: var(--dark);
}

.btn-accent:hover {
    background: #e6943f;
}

.btn-dark {
    background: var(--dark);
    color: #fff;
}

.btn-dark:hover {
    background: var(--primary);
}

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

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

.magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.magazine-col-2 {
    flex: 0 0 calc(50% - 15px);
}

.magazine-col-3 {
    flex: 0 0 calc(33.333% - 20px);
}

.magazine-col-4 {
    flex: 0 0 calc(25% - 22.5px);
}

.magazine-col-full {
    flex: 0 0 100%;
}

.section-intro {
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 700px;
}

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

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

.section-bg-dark {
    background: var(--dark);
    color: #fff;
}

.section-bg-dark .section-title,
.section-bg-dark .section-label {
    color: #fff;
}

.section-bg-dark .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.features-intro {
    background: var(--soft-blue);
    padding: 100px 0;
}

.features-intro-inner {
    display: flex;
    gap: 60px;
    align-items: center;
}

.features-intro-content {
    flex: 1;
}

.features-intro-image {
    flex: 1;
    position: relative;
}

.features-intro-image img {
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.feature-list {
    margin-top: 35px;
}

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

.feature-list-icon {
    width: 28px;
    height: 28px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-list-icon svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
}

.feature-list-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.feature-list-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

.services-showcase {
    padding: 100px 0;
    background: #fff;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.service-card {
    flex: 0 0 calc(33.333% - 17px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.06);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

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

.service-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--dark);
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
}

.service-card-content {
    padding: 30px;
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card-desc {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-card-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-card-features li:last-child {
    border-bottom: none;
}

.service-card-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.service-card-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.service-card-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
}

.service-card-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.testimonials {
    padding: 100px 0;
    background: var(--dark);
    color: #fff;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 35px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-size: 1.05rem;
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.process-section {
    padding: 100px 0;
    background: var(--cream);
}

.process-timeline {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    flex: 1;
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.process-step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(232, 90, 79, 0.3);
}

.process-step-content {
    padding-top: 25px;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.process-step p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.cta-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #c44539 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-banner h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn {
    background: #fff;
    color: var(--secondary);
}

.cta-banner .btn:hover {
    background: var(--dark);
    color: #fff;
}

.faq-section {
    padding: 100px 0;
}

.faq-grid {
    display: flex;
    gap: 60px;
}

.faq-content {
    flex: 0 0 35%;
}

.faq-list {
    flex: 1;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 25px 0;
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding-top: 15px;
    color: var(--gray);
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.contact-form-section {
    padding: 100px 0;
    background: var(--soft-blue);
}

.contact-form-inner {
    display: flex;
    gap: 60px;
}

.contact-form-content {
    flex: 0 0 40%;
}

.contact-form-wrapper {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 45px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

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

.contact-info-cards {
    margin-top: 35px;
}

.contact-info-card {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.contact-info-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-info-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

footer {
    background: var(--dark);
    color: #fff;
    padding: 70px 0 0;
}

.footer-grid {
    display: flex;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    flex: 0 0 30%;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #fff;
}

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

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

.footer-column a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--secondary);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #d14a40;
}

.cookie-btn-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}

.cookie-btn-reject:hover {
    border-color: #fff;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(232, 90, 79, 0.4);
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(232, 90, 79, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(232, 90, 79, 0.6);
    }
}

.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    opacity: 0.7;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.5;
    margin: 0 10px;
}

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

.content-page h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--dark);
}

.content-page h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--dark);
}

.content-page p {
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.8;
}

.content-page ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-page li {
    margin-bottom: 10px;
    color: var(--gray);
    line-height: 1.7;
}

.about-intro {
    padding: 100px 0;
    background: #fff;
}

.about-intro-inner {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-intro-content {
    flex: 1;
}

.about-intro-image {
    flex: 1;
}

.about-intro-image img {
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.about-values {
    padding: 100px 0;
    background: var(--soft-blue);
}

.values-grid {
    display: flex;
    gap: 30px;
}

.value-card {
    flex: 1;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.value-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.team-section {
    padding: 100px 0;
}

.team-grid {
    display: flex;
    gap: 30px;
}

.team-card {
    flex: 1;
    text-align: center;
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
    color: #fff;
    font-weight: 700;
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.team-card span {
    color: var(--secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.team-card p {
    margin-top: 12px;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.contact-page-info {
    padding: 100px 0;
    background: #fff;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 0 0 40%;
}

.contact-map {
    flex: 1;
    background: var(--soft-blue);
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-detail-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

.contact-detail-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-detail-text p {
    color: var(--gray);
    line-height: 1.7;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    stroke: #fff;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 15px;
    line-height: 1.8;
}

.thanks-service {
    background: rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: 10px;
    margin: 30px 0;
    font-size: 1.1rem;
}

.thanks-service strong {
    color: var(--accent);
}

.thanks-content .btn {
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .features-intro-inner {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 calc(50% - 12.5px);
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .process-timeline {
        flex-wrap: wrap;
    }

    .process-step {
        flex: 0 0 calc(50% - 15px);
    }

    .faq-grid {
        flex-direction: column;
        gap: 40px;
    }

    .faq-content {
        flex: 1;
    }

    .contact-form-inner {
        flex-direction: column;
    }

    .contact-form-content {
        flex: 1;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }

    .about-intro-inner {
        flex-direction: column;
    }

    .values-grid {
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(50% - 15px);
    }

    .team-grid {
        flex-wrap: wrap;
    }

    .team-card {
        flex: 0 0 calc(50% - 15px);
    }

    .contact-grid {
        flex-direction: column;
    }

    .contact-details {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-stat {
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .process-step {
        flex: 0 0 100%;
    }

    .value-card {
        flex: 0 0 100%;
    }

    .team-card {
        flex: 0 0 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .footer-column {
        flex: 0 0 calc(50% - 25px);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        right: 15px;
        bottom: 15px;
    }

    .sticky-cta-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .magazine-col-2,
    .magazine-col-3,
    .magazine-col-4 {
        flex: 0 0 100%;
    }
}

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

    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

    .section-title {
        font-size: 1.7rem;
    }

    .footer-column {
        flex: 0 0 100%;
    }
}
