:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #d35400;
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.split-alternate {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.split-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
}

.value-cards {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 20px;
    background: var(--light-bg);
}

.value-cards h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.card p {
    color: #666;
    line-height: 1.6;
}

.testimonial-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.testimonial-content {
    flex: 1;
    background: var(--light-bg);
    padding: 50px;
    border-left: 5px solid var(--secondary-color);
}

.testimonial-content blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    margin: 0;
}

.testimonial-content cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.services-preview {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.services-preview h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.service-left {
    flex: 1;
    padding-right: 30px;
}

.service-left h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-left p {
    color: #666;
    line-height: 1.6;
}

.service-right {
    text-align: right;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    white-space: nowrap;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.process-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 20px;
    background: var(--light-bg);
}

.process-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.process-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    position: relative;
    padding-left: 60px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

.image-text-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
}

.split-img {
    flex: 1;
}

.split-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.btn-outline {
    display: inline-block;
    padding: 14px 28px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 16px;
}

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

.stats-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 20px;
    background: var(--primary-color);
    border-radius: 8px;
}

.stats-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-item h3 {
    font-size: 48px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

.form-split-section {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: flex-start;
}

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

.form-left-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-left-content p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #555;
}

.form-benefits {
    list-style: none;
    padding: 0;
}

.form-benefits li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    color: #555;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.form-right {
    flex: 1;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    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: var(--secondary-color);
}

.btn-submit {
    padding: 16px 32px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 20px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.8;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 16px 24px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #d35400;
    transform: scale(1.05);
}

.page-hero {
    max-width: 1200px;
    margin: 60px auto;
    padding: 80px 20px;
    text-align: center;
    background: var(--light-bg);
    border-radius: 8px;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-hero p {
    font-size: 20px;
    color: #666;
}

.services-detailed {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-left {
    flex: 1;
}

.service-detail-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-detail-right {
    flex: 1;
}

.service-detail-right h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-detail-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.service-includes {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-includes li {
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
    color: #555;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.services-cta {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 20px;
    text-align: center;
    background: var(--light-bg);
    border-radius: 8px;
}

.services-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.services-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.about-split {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.6;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.values-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 20px;
    background: var(--light-bg);
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.team-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.team-image {
    flex: 1;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.6;
}

.timeline-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.timeline-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.timeline-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 5px solid var(--secondary-color);
}

.timeline-year {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 100px;
}

.timeline-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.timeline-item p {
    color: #666;
    line-height: 1.6;
}

.certifications-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 20px;
    background: var(--light-bg);
}

.certifications-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.cert-item {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cert-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.cert-item p {
    color: #666;
    line-height: 1.6;
}

.about-cta {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 20px;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
}

.about-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-info-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info-item {
    flex: 1;
    min-width: 250px;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.contact-info-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-info-item p {
    color: #555;
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-map-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-map-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.map-placeholder {
    background: var(--light-bg);
    border: 2px dashed var(--border-color);
    padding: 80px 40px;
    text-align: center;
    border-radius: 8px;
    color: #999;
    font-size: 18px;
}

.contact-additional {
    max-width: 1200px;
    margin: 60px auto;
    padding: 60px 20px;
    text-align: center;
    background: var(--light-bg);
    border-radius: 8px;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-additional p {
    font-size: 18px;
    color: #666;
}

.contact-additional a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-additional a:hover {
    text-decoration: underline;
}

.thanks-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 20px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content > p {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.thanks-details {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.6;
}

.thanks-details a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.thanks-details a:hover {
    text-decoration: underline;
}

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

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.8;
}

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

.legal-page li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-split,
    .split-alternate,
    .testimonial-split,
    .image-text-split,
    .form-split-section,
    .about-split,
    .team-split,
    .service-detail-item {
        flex-direction: column;
    }

    .service-detail-item.reverse {
        flex-direction: column;
    }

    .nav-menu {
        gap: 15px;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

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

    .service-left {
        padding-right: 0;
        margin-bottom: 16px;
    }

    .service-right {
        text-align: left;
    }

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

    .sticky-cta a {
        padding: 12px 20px;
        font-size: 14px;
    }

    .timeline-item {
        flex-direction: column;
    }

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