* {
    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: #fefefe;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie, .btn-cookie-alt {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-alt {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cookie-alt:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand a {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

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

.nav-disclosure {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-style: italic;
}

.ad-label {
    background: #ecf0f1;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 4rem 5%;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.hero-visual-offset {
    flex: 1;
    margin-left: 3rem;
    position: relative;
}

.hero-visual-offset img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
}

.intro-asymmetric {
    display: flex;
    padding: 7rem 5%;
    gap: 4rem;
    align-items: center;
    background: white;
}

.intro-left {
    flex: 1.2;
}

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.intro-left p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.intro-right-visual {
    flex: 1;
    background: #f7fafc;
    padding: 2rem;
}

.intro-right-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-block {
    padding: 6rem 5%;
    background: #2c3e50;
    color: white;
}

.insight-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.insight-container h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.insight-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

.overlap-section {
    position: relative;
    padding: 8rem 5%;
    background: #ecf0f1;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.overlap-image {
    flex: 1;
    transform: translateX(-50px);
}

.overlap-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.overlap-text-card {
    flex: 1;
    background: white;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateX(30px);
}

.overlap-text-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.overlap-text-card p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #2c3e50;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.testimonial-inline {
    padding: 5rem 10%;
    background: #f8f9fa;
    text-align: center;
}

.testimonial-inline blockquote {
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-inline cite {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-style: normal;
}

.services-asymmetric {
    padding: 7rem 5%;
    background: white;
}

.services-header-offset {
    max-width: 700px;
    margin-bottom: 4rem;
}

.services-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.services-header-offset p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.services-grid-irregular {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.service-card-large {
    grid-column: span 6;
    background: #f8f9fa;
    padding: 2rem;
}

.service-card-offset {
    grid-column: span 6;
    background: #ecf0f1;
    padding: 2rem;
    transform: translateY(50px);
}

.service-card-small {
    grid-column: span 4;
    background: #e9ecef;
    padding: 2rem;
}

.service-card-medium {
    grid-column: span 5;
    background: #f1f3f5;
    padding: 2rem;
}

.service-card-wide {
    grid-column: span 7;
    background: #f8f9fa;
    padding: 2rem;
}

.service-card-accent {
    grid-column: span 12;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
}

.service-card-accent h3,
.service-card-accent p,
.service-card-accent .price {
    color: white;
}

.service-card-large img,
.service-card-offset img,
.service-card-small img,
.service-card-medium img,
.service-card-wide img,
.service-card-accent img {
    width: 100%;
    height: 200px;
    display: block;
    margin-bottom: 1.5rem;
}

.service-card-large h3,
.service-card-offset h3,
.service-card-small h3,
.service-card-medium h3,
.service-card-wide h3,
.service-card-accent h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-card-large p,
.service-card-offset p,
.service-card-small p,
.service-card-medium p,
.service-card-wide p,
.service-card-accent p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
    display: block;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section-offset {
    padding: 7rem 5%;
    background: #f8f9fa;
}

.form-intro {
    max-width: 600px;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

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

.contact-form-asymmetric {
    max-width: 700px;
    background: white;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.selected-service-display {
    background: #e8f5e9;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #27ae60;
}

.selected-service-display p {
    margin: 0;
    color: #1e8449;
    font-weight: 600;
}

.form-row-split {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #27ae60;
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 5rem 10%;
    background: white;
    text-align: center;
}

.trust-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.trust-section p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.trust-section a {
    color: #3498db;
    text-decoration: none;
}

.trust-section a:hover {
    text-decoration: underline;
}

.footer-asymmetric {
    background: #1a252f;
    color: white;
    padding: 4rem 5% 2rem 5%;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

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

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

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

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

.footer-col ul.references {
    font-size: 0.85rem;
}

.footer-disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 3px solid #e74c3c;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #ecf0f1;
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #b0bec5;
    font-size: 0.9rem;
}

.about-hero-offset {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.about-text-primary h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
    max-width: 800px;
}

.about-text-primary p {
    font-size: 1.3rem;
    color: #5a6c7d;
    max-width: 700px;
}

.about-story {
    display: flex;
    padding: 7rem 5%;
    gap: 4rem;
    align-items: center;
    background: white;
}

.story-block-left {
    flex: 1;
}

.story-block-left img {
    width: 100%;
    height: auto;
    display: block;
}

.story-block-right {
    flex: 1;
}

.story-block-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.story-block-right p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.philosophy-section {
    padding: 6rem 10%;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.philosophy-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.philosophy-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 1.5rem auto;
}

.team-asymmetric {
    padding: 7rem 5%;
    background: #f8f9fa;
}

.team-asymmetric h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #1a252f;
    text-align: center;
}

.team-grid-offset {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.team-member img {
    width: 100%;
    height: 350px;
    display: block;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.team-member .role {
    font-size: 1rem;
    color: #3498db;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.approach-section {
    display: flex;
    padding: 7rem 5%;
    gap: 4rem;
    align-items: center;
    background: white;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.approach-text p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.approach-visual {
    flex: 1;
}

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

.values-block {
    padding: 7rem 5%;
    background: #ecf0f1;
}

.values-block h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #1a252f;
    text-align: center;
}

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

.value-item {
    background: white;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

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

.cta-about {
    padding: 5rem 5%;
    background: #3498db;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #3498db;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.services-header {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    text-align: center;
}

.services-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.services-header p {
    font-size: 1.3rem;
    color: #5a6c7d;
}

.services-detail-asymmetric {
    padding: 5rem 5%;
    background: white;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

.service-detail-card.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    color: white;
}

.service-detail-card.highlight h2,
.service-detail-card.highlight h3,
.service-detail-card.highlight p,
.service-detail-card.highlight .price-large {
    color: white;
}

.service-image {
    flex: 1;
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #4a5568;
}

.service-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
    display: block;
}

.form-section-services {
    padding: 7rem 5%;
    background: #f8f9fa;
}

.contact-header {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    text-align: center;
}

.contact-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.contact-header p {
    font-size: 1.3rem;
    color: #5a6c7d;
}

.contact-info-asymmetric {
    display: flex;
    padding: 7rem 5%;
    gap: 4rem;
    background: white;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
}

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

.contact-approach {
    padding: 5rem 10%;
    background: #f8f9fa;
    text-align: center;
}

.contact-approach h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.contact-approach p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 1.2rem auto;
}

.thanks-hero {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    background: white;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #27ae60;
}

.service-confirmation p {
    margin: 0;
    color: #1e8449;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.legal-page {
    padding: 5rem 10%;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-page p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-page em {
    color: #7f8c8d;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .hero-visual-offset {
        margin-left: 0;
        margin-top: 2rem;
    }

    .intro-asymmetric,
    .about-story,
    .approach-section,
    .contact-info-asymmetric {
        flex-direction: column;
    }

    .overlap-section {
        flex-direction: column;
    }

    .overlap-image,
    .overlap-text-card {
        transform: none;
    }

    .services-grid-irregular .service-card-large,
    .services-grid-irregular .service-card-offset,
    .services-grid-irregular .service-card-small,
    .services-grid-irregular .service-card-medium,
    .services-grid-irregular .service-card-wide,
    .services-grid-irregular .service-card-accent {
        grid-column: span 12;
        transform: none;
    }

    .form-row-split {
        flex-direction: column;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}