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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

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

.hero-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(44, 62, 80, 0.85));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.5;
}

.intro-cards {
    padding: 60px 0;
    background: #ffffff;
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #f8f9fa;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-card p {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.services-preview {
    padding: 80px 0;
    background: #ecf0f1;
}

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

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-info p {
    color: #5a6c7d;
    margin-bottom: 20px;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.btn-select-service {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.form-intro p {
    color: #5a6c7d;
    font-size: 1rem;
}

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

.selected-service-box {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.selected-service-box strong {
    color: #0c5460;
}

.selected-service-box span {
    color: #0c5460;
}

.btn-clear {
    background: #17a2b8;
    color: #ffffff;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.3s ease;
}

.btn-clear:hover {
    background: #138496;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

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

.content-split {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.split-image {
    flex: 1;
    min-width: 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    min-width: 400px;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    min-width: 50px;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.feature-text p {
    color: #5a6c7d;
    line-height: 1.6;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

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

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section p {
    color: #bdc3c7;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

.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-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    line-height: 1.6;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-cookie-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #229954;
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.page-header {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

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

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.thanks-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 50px;
}

.next-steps {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    color: #2c3e50;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    background: #3498db;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-item p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-top: 8px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background: #bdc3c7;
    transform: translateY(-2px);
}

.services-detailed {
    padding: 60px 0;
    background: #ffffff;
}

.service-detail-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: #2c3e50;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3498db;
}

.service-detail-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-image-large {
    flex: 1;
    min-width: 350px;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-description {
    flex: 1;
    min-width: 350px;
}

.service-description p {
    color: #5a6c7d;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-description h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-description ul {
    list-style: none;
    padding-left: 0;
}

.service-description ul li {
    padding: 8px 0 8px 30px;
    color: #5a6c7d;
    line-height: 1.6;
    position: relative;
}

.service-description ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.cta-section {
    padding: 80px 0;
    background: #ecf0f1;
}

.cta-box {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    background: #27ae60;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
    background: #229954;
    transform: translateY(-3px);
}

.about-intro {
    padding: 60px 0;
    background: #ffffff;
}

.about-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-image-main {
    flex: 1;
    min-width: 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-content {
    flex: 1;
    min-width: 400px;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-content p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.values-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-card p {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.approach-section {
    padding: 80px 0;
    background: #ffffff;
}

.approach-split {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.approach-content {
    flex: 1;
    min-width: 400px;
}

.approach-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-step h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #3498db;
}

.approach-step p {
    color: #5a6c7d;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
    min-width: 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

.expertise-section {
    padding: 80px 0;
    background: #ecf0f1;
}

.expertise-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    color: #5a6c7d;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.expertise-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.expertise-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.expertise-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.expertise-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.commitment-section {
    padding: 80px 0;
    background: #ffffff;
}

.commitment-box {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.commitment-box h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.commitment-content p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-info-section {
    padding: 60px 0;
    background: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-details-card {
    flex: 1;
    min-width: 350px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.contact-details-card h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    min-width: 40px;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-text p {
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-note {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    color: #0c5460;
    line-height: 1.6;
    margin: 0;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
}

.faq-section {
    padding: 80px 0;
    background: #ecf0f1;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-card p {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-cta {
    padding: 80px 0;
    background: #ffffff;
}

.legal-page {
    padding: 60px 0;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-date {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content h4 {
    font-size: 1.15rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

.legal-content p {
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .card-grid,
    .services-grid,
    .content-split,
    .values-grid,
    .approach-split,
    .expertise-grid,
    .contact-layout,
    .faq-grid {
        flex-direction: column;
    }

    .split-image,
    .split-content,
    .about-image-main,
    .about-content,
    .approach-content,
    .approach-image,
    .contact-details-card,
    .contact-map-placeholder {
        min-width: 100%;
    }

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

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}