* {
    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: #333;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #229954;
}

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

.btn-reject:hover {
    background-color: #7f8c8d;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-area h1 {
    font-size: 28px;
    color: #2c3e50;
    font-weight: 700;
}

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

.main-nav a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-notice {
    background-color: #ecf0f1;
    padding: 8px 15px;
    font-size: 12px;
    color: #7f8c8d;
    border-radius: 4px;
}

.hero-asymmetric {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 400px;
}

.hero-text-block h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 25px;
}

.hero-text-block p {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.hero-image-offset {
    flex: 1;
    min-width: 400px;
    background-color: #ecf0f1;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-diagonal {
    background-color: #f8f9fa;
    padding: 80px 40px;
    margin: 60px 0;
}

.intro-content-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.intro-left {
    flex: 1.5;
    min-width: 400px;
}

.intro-left h3 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
}

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

.intro-right-image {
    flex: 1;
    min-width: 350px;
    background-color: #d5dbdb;
}

.intro-right-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.feature-stagger {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.feature-block.feature-left {
    flex-direction: row;
}

.feature-block.feature-right {
    flex-direction: row-reverse;
}

.feature-icon {
    flex: 1;
    min-width: 350px;
    background-color: #ecf0f1;
}

.feature-icon img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.feature-text {
    flex: 1;
    min-width: 400px;
}

.feature-text h4 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.services-selection {
    background-color: #f8f9fa;
    padding: 80px 40px;
    margin: 80px 0;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h3 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 18px;
    color: #555;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.service-card.featured {
    border: 2px solid #3498db;
}

.service-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #3498db;
    color: #ffffff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.service-card h4 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-card .price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.form-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 40px;
}

.form-wrapper {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 50px;
}

.form-wrapper h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.form-wrapper p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

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

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

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #229954;
}

.trust-section {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 40px;
    margin: 80px 0;
}

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

.trust-content h3 {
    font-size: 36px;
    margin-bottom: 50px;
}

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

.stat-item {
    flex: 1;
    min-width: 250px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #ecf0f1;
}

.main-footer {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

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

.footer-column a:hover {
    color: #3498db;
}

.footer-column p {
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: #2c3e50;
    border-radius: 6px;
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #5a6c7d;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.page-hero-offset {
    background-color: #3498db;
    color: #ffffff;
    padding: 80px 40px;
    margin-bottom: 60px;
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

.about-story {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.about-text-large {
    flex: 1.5;
    min-width: 400px;
}

.about-text-large h3 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.about-text-large p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image-right {
    flex: 1;
    min-width: 350px;
    background-color: #ecf0f1;
}

.about-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-asymmetric {
    background-color: #f8f9fa;
    padding: 80px 40px;
    margin: 80px 0;
}

.value-block {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 40px;
    background-color: #ffffff;
    border-left: 5px solid #3498db;
}

.value-block.value-offset {
    margin-left: auto;
    margin-right: 0;
    border-left: none;
    border-right: 5px solid #27ae60;
}

.value-block h4 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-block p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.timeline-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 40px;
}

.timeline-section h3 {
    font-size: 40px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #3498db;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    text-align: right;
}

.timeline-content {
    flex: 1;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
}

.timeline-content h4 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.team-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.team-section h3 {
    font-size: 40px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

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

.team-item {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
}

.team-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
    background-color: #ecf0f1;
}

.team-item h4 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.team-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.cta-about {
    background-color: #3498db;
    padding: 80px 40px;
    margin: 80px 0;
}

.cta-content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-content-center h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content-center p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.services-detailed {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.service-detail-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
    background-color: #ecf0f1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-detail-text {
    flex: 1;
    min-width: 400px;
}

.service-detail-text h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-detail-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-text li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.service-detail-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.service-price-line {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 18px;
    color: #7f8c8d;
    font-weight: 600;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
}

.btn-service-cta {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-service-cta:hover {
    background-color: #2980b9;
}

.services-faq {
    max-width: 1000px;
    margin: 100px auto 80px;
    padding: 0 40px;
}

.services-faq h3 {
    font-size: 40px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.faq-item h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.cta-services {
    background-color: #27ae60;
    padding: 80px 40px;
    margin: 80px 0;
}

.contact-layout {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-asymmetric {
    flex: 1;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.contact-visual {
    flex: 1;
    min-width: 400px;
    background-color: #ecf0f1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-cta-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
    margin: 80px 0;
}

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

.contact-cta-content h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-cta-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.thanks-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
}

.thanks-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 60px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-icon svg {
    margin: 0 auto;
    display: block;
}

.thanks-container h2 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-submessage {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-service-info {
    background-color: #ffffff;
    border: 2px solid #3498db;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 50px;
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 50px;
}

.thanks-next-steps h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

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

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

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

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

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

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

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

.legal-container {
    background-color: #ffffff;
}

.legal-container h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.legal-intro {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-container h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-container h4 {
    font-size: 20px;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

.legal-container li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-container a {
    color: #3498db;
    text-decoration: underline;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.gdpr-table th,
.gdpr-table td {
    border: 1px solid #d0d0d0;
    padding: 15px;
    text-align: left;
}

.gdpr-table th {
    background-color: #34495e;
    color: #ffffff;
    font-weight: 600;
}

.gdpr-table td {
    background-color: #f8f9fa;
    color: #555;
}

@media (max-width: 768px) {
    .header-offset {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-text-block h2 {
        font-size: 36px;
    }

    .feature-block.feature-left,
    .feature-block.feature-right {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .about-wrapper,
    .contact-layout {
        flex-direction: column;
    }

    .timeline::before {
        left: 60px;
    }

    .timeline-year {
        width: 60px;
    }

    .thanks-container {
        padding: 40px 20px;
    }

    .thanks-container h2 {
        font-size: 32px;
    }

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