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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 15px 0;
    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;
}

.logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

.hero-magazine {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-content-wide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-large {
    width: 100%;
    height: 100%;
}

.hero-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-text-overlay h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text-overlay p {
    font-size: 24px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.intro-columns {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.column-left {
    flex: 1;
    padding-right: 40px;
}

.column-left h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.column-left p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.column-right {
    flex: 1;
}

.featured-image {
    background-color: #e0e0e0;
}

.featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.services-grid-magazine {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.section-title-center {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.service-layout-mixed {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-large {
    display: flex;
    gap: 40px;
    background-color: #f5f5f5;
    padding: 40px;
    border-left: 5px solid #d4a574;
}

.service-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.price-tag {
    font-size: 28px;
    font-weight: bold;
    color: #d4a574;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.service-row-split {
    display: flex;
    gap: 40px;
}

.service-card-medium {
    flex: 1;
    background-color: #fafafa;
    padding: 35px;
    border-top: 3px solid #1a1a1a;
}

.service-card-medium h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card-medium p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-image-small {
    margin: 20px 0;
    background-color: #e0e0e0;
}

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

.service-card-wide {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 50px;
}

.service-content-horizontal {
    display: flex;
    gap: 50px;
    align-items: center;
}

.content-text {
    flex: 1.5;
}

.content-text h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.content-text p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.content-text .price-tag {
    color: #d4a574;
}

.content-image {
    flex: 1;
    background-color: #444;
}

.content-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-card-accent {
    background: linear-gradient(135deg, #d4a574 0%, #c49563 100%);
    color: #ffffff;
    padding: 40px;
}

.service-card-accent h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card-accent p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card-accent .price-tag {
    color: #1a1a1a;
}

.cta-section-inline {
    padding: 80px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

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

.cta-section-inline h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section-inline p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-cta-inline {
    background-color: #d4a574;
    color: #1a1a1a;
    padding: 18px 45px;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-cta-inline:hover {
    background-color: #c49563;
}

.contact-form-section {
    padding: 100px 20px;
    background-color: #f5f5f5;
}

.form-wrapper-magazine {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

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

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

.form-group label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    background-color: #fafafa;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.about-preview {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-columns-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.link-inline {
    color: #d4a574;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid #d4a574;
    transition: color 0.3s;
}

.link-inline:hover {
    color: #1a1a1a;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px 20px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #cccccc;
}

.email-static {
    color: #cccccc;
    cursor: default;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    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;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie-accept {
    background-color: #d4a574;
    color: #1a1a1a;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.page-header {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 20px 60px 20px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    color: #d4a574;
}

.about-content {
    padding: 80px 20px;
}

.about-intro-wide {
    margin-bottom: 80px;
    background-color: #e0e0e0;
}

.about-intro-wide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-text-block {
    padding: 60px;
    background-color: #f9f9f9;
}

.about-text-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-text-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.expertise-section {
    margin-bottom: 80px;
}

.expertise-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

.expertise-item {
    flex: 1;
    min-width: 250px;
    background-color: #fafafa;
    padding: 30px;
    border-left: 4px solid #d4a574;
}

.expertise-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.expertise-item p {
    font-size: 16px;
    line-height: 1.7;
}

.philosophy-section {
    margin-bottom: 80px;
    background-color: #f5f5f5;
    padding: 60px;
}

.philosophy-columns {
    display: flex;
    gap: 60px;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.philosophy-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.philosophy-image {
    flex: 1;
    background-color: #e0e0e0;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.experience-section {
    margin-bottom: 80px;
}

.experience-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.experience-intro {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.experience-highlights {
    display: flex;
    gap: 30px;
}

.highlight-card {
    flex: 1;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 40px;
}

.highlight-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #d4a574;
}

.highlight-card p {
    font-size: 16px;
    line-height: 1.7;
}

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

.values-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item {
    background-color: #fafafa;
    padding: 30px;
    border-left: 5px solid #1a1a1a;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.cta-about {
    text-align: center;
    padding: 60px;
    background-color: #f5f5f5;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.services-detail {
    padding: 80px 20px;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 30px 0;
}

.price-label {
    font-size: 16px;
    color: #555;
}

.price-amount {
    font-size: 32px;
    font-weight: bold;
    color: #d4a574;
}

.services-cta {
    background-color: #f5f5f5;
    padding: 80px 20px;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.contact-page-content {
    padding: 80px 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info-box {
    flex: 1;
    background-color: #f5f5f5;
    padding: 50px;
}

.contact-info-box h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #d4a574;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c2c;
}

.contact-info-additional {
    flex: 1;
}

.contact-info-additional h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-info-additional p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.business-hours-note {
    background-color: #f9f9f9;
    padding: 30px;
    margin-top: 40px;
    border-left: 4px solid #d4a574;
}

.business-hours-note h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.business-hours-note p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 12px 30px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.location-info {
    background-color: #fafafa;
    padding: 50px;
}

.location-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.location-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #f9f9f9;
}

.thanks-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 80px 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #d4a574;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px auto;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.service-confirmation {
    background-color: #f5f5f5;
    padding: 20px;
    margin-bottom: 40px;
}

.service-note {
    font-size: 17px;
    margin: 10px 0;
    color: #2c2c2c;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

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

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: #d4a574;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

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

.btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 15px 35px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

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

.legal-page {
    padding: 80px 20px 60px 20px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
}

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

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

.legal-content a {
    color: #d4a574;
    text-decoration: underline;
}

.legal-update {
    margin-top: 40px;
    font-size: 14px;
    color: #999;
    font-style: italic;
}

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

.cookie-table th,
.cookie-table td {
    border: 1px solid #e0e0e0;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 15px;
    color: #444;
}

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 36px;
    }

    .hero-text-overlay p {
        font-size: 18px;
    }

    .container-fluid,
    .service-row-split,
    .service-card-large,
    .service-content-horizontal,
    .about-columns-reverse,
    .footer-container,
    .philosophy-columns,
    .experience-highlights,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

    .column-left {
        padding-right: 0;
    }

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

    .nav-links {
        gap: 15px;
    }

    .about-text-block {
        padding: 40px 30px;
    }

    .philosophy-section {
        padding: 40px 30px;
    }

    .thanks-content {
        padding: 50px 30px;
    }

    .page-header h1 {
        font-size: 36px;
    }
}