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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(28, 28, 28, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin-right: 2rem;
    font-size: 0.95rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #d4af37;
    color: #1c1c1c;
}

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

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

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

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c1c1c;
    letter-spacing: 0.5px;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    background-color: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.hero-visual {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-color: #1c1c1c;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.hero-overlay h1 {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
}

.hero-overlay p {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

.intro-narrative {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.narrow-content {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #3a3a3a;
}

.narrow-content p {
    margin-bottom: 1.8rem;
}

.image-text-offset {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
}

.offset-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

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

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

.offset-text {
    flex: 1;
    padding: 2rem;
}

.offset-text h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #1c1c1c;
}

.offset-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.visual-grid {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.grid-title {
    text-align: center;
    margin-bottom: 4rem;
}

.grid-title h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #1c1c1c;
}

.location-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.location-card {
    flex: 0 1 380px;
    background-color: #fafafa;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

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

.card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.location-card h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 1.5rem 1.5rem 1rem;
    color: #1c1c1c;
}

.location-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    padding: 0 1.5rem 2rem;
}

.full-width-visual {
    position: relative;
    background-color: #1c1c1c;
}

.full-image-section {
    position: relative;
    width: 100%;
}

.full-image-section img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    opacity: 0.75;
}

.image-caption {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
}

.image-caption p {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

.insight-section {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

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

.insight-container h2 {
    font-size: 2.8rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    color: #1c1c1c;
}

.insight-points {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.insight-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #d4af37;
}

.insight-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1c1c1c;
}

.insight-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.services-intro h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1c1c1c;
}

.services-intro p {
    font-size: 1.2rem;
    color: #555;
}

.services-showcase {
    max-width: 1300px;
    margin: 0 auto;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.service-feature.reverse {
    flex-direction: row-reverse;
}

.service-feature img {
    flex: 1;
    width: 100%;
    height: 450px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-info {
    flex: 1;
    padding: 2rem;
}

.service-info h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1c1c1c;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #d4af37;
    margin-top: 1.5rem;
}

.cta-inline {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #1c1c1c;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: transparent;
    color: #1c1c1c;
    border: 2px solid #1c1c1c;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.testimonial-visual {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.testimonial-content {
    flex: 1.5;
}

.testimonial-content blockquote {
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.9;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1.1rem;
    font-style: normal;
    color: #666;
}

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

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

.form-section {
    padding: 6rem 2rem;
    background-color: #1c1c1c;
    color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #d4af37;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
}

.service-selection {
    margin-bottom: 2.5rem;
}

.service-option {
    display: block;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-option:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.service-option input[type="radio"] {
    margin-right: 1rem;
}

.service-option span {
    font-size: 1.05rem;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-fields input {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.form-fields input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-submit {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    background-color: #d4af37;
    color: #1c1c1c;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-visual {
    position: relative;
    background-color: #1c1c1c;
}

.final-image-container {
    position: relative;
    width: 100%;
}

.final-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    opacity: 0.7;
}

.final-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
}

.final-overlay p {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

.main-footer {
    background-color: #1c1c1c;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #d4af37;
}

.footer-section p,
.footer-section ul {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ccc;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: #d4af37;
}

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

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.about-hero {
    position: relative;
    background-color: #1c1c1c;
}

.about-hero-image {
    position: relative;
    width: 100%;
}

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

.about-hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
}

.about-hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

.about-story {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #1c1c1c;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #444;
}

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

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

.expertise-section {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
}

.expertise-section h2 {
    font-size: 2.8rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    color: #1c1c1c;
}

.expertise-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.expertise-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: #ffffff;
}

.expertise-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1c1c1c;
}

.expertise-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.values-visual {
    position: relative;
    background-color: #1c1c1c;
}

.values-container {
    position: relative;
    width: 100%;
}

.values-container img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    opacity: 0.5;
}

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

.values-overlay h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

.values-overlay ul {
    list-style: none;
    font-size: 1.3rem;
    line-height: 2.2;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
}

.team-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 2.8rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1c1c1c;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.team-stats {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: #555;
}

.services-header {
    padding: 5rem 2rem 3rem;
    background-color: #f5f5f5;
    text-align: center;
}

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

.services-subtitle {
    font-size: 1.3rem;
    color: #555;
}

.services-grid {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.service-card {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

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

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

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

.service-content {
    flex: 1;
    padding: 2rem;
}

.service-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1c1c1c;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.service-cta {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #1c1c1c;
}

.cta-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.contact-header {
    padding: 5rem 2rem 3rem;
    background-color: #f5f5f5;
    text-align: center;
}

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

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

.contact-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 5rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #1c1c1c;
}

.contact-details {
    margin-bottom: 3rem;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: #d4af37;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #d4af37;
}

.contact-note p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.contact-visual {
    flex: 1;
    background-color: #e0e0e0;
}

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

.thanks-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.thanks-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.thanks-content {
    flex: 1.5;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1c1c1c;
}

.thanks-message {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #d4af37;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #555;
}

.thanks-note {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
}

.thanks-visual {
    flex: 1;
    background-color: #e0e0e0;
}

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

.legal-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #1c1c1c;
}

.legal-container h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1c1c1c;
}

.legal-container h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-container h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

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

.legal-container ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.8rem;
}

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

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: #999;
}

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

    .hero-overlay p {
        font-size: 1.2rem;
    }

    .offset-container,
    .service-feature,
    .service-card,
    .story-container,
    .testimonial-container,
    .contact-grid,
    .thanks-container {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

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