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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.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;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.cookie-btn.accept {
    background-color: #c41e3a;
    color: #ffffff;
}

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

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: #c41e3a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 12px;
    color: #666;
    font-style: italic;
    border-left: 1px solid #e0e0e0;
    padding-left: 32px;
    margin-left: 10px;
}

.hero-magazine {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: flex-end;
}

.hero-text-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    color: #ffffff;
}

.hero-text-magazine h1 {
    font-size: 68px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.5;
    opacity: 0.95;
}

.intro-editorial {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.intro-columns {
    display: flex;
    gap: 60px;
}

.intro-main {
    flex: 2;
}

.intro-main h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-main p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.intro-sidebar {
    flex: 1;
}

.highlight-box {
    background-color: #ffffff;
    padding: 35px;
    border-left: 4px solid #c41e3a;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.highlight-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.benefits-list {
    list-style: none;
    margin-bottom: 25px;
}

.benefits-list li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    font-size: 16px;
    color: #3a3a3a;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c41e3a;
    font-weight: 700;
}

.cta-inline {
    display: inline-block;
    background-color: #c41e3a;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.featured-venues {
    padding: 90px 0;
    background-color: #ffffff;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title-magazine {
    font-size: 48px;
    margin-bottom: 50px;
    text-align: left;
    color: #1a1a1a;
    font-weight: 700;
    border-bottom: 3px solid #c41e3a;
    padding-bottom: 15px;
    display: inline-block;
}

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

.venue-card-large {
    flex: 2;
    min-width: 500px;
    background-color: #f5f5f5;
}

.venue-card-medium {
    flex: 1;
    min-width: 300px;
    background-color: #f5f5f5;
}

.venue-card-large img,
.venue-card-medium img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.venue-card-large img {
    height: 500px;
}

.venue-card-medium img {
    height: 400px;
}

.venue-content {
    padding: 30px;
}

.venue-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.venue-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
}

.experience-narrative {
    padding: 80px 0;
    background-color: #fafafa;
}

.container-narrative {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.narrative-split {
    display: flex;
    gap: 70px;
    align-items: center;
}

.narrative-text {
    flex: 1.3;
}

.narrative-text h2 {
    font-size: 44px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.narrative-text p {
    font-size: 17px;
    margin-bottom: 22px;
    color: #3a3a3a;
    line-height: 1.7;
}

.narrative-emphasis {
    font-size: 20px;
    font-style: italic;
    color: #c41e3a;
    font-weight: 600;
    margin-top: 30px;
}

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

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

.services-preview {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.services-magazine-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card-mag {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #f9f9f9;
    padding: 35px;
    border-top: 5px solid #c41e3a;
}

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #c41e3a;
    display: block;
}

.service-card-mag p {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.service-link {
    color: #c41e3a;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.service-link:hover {
    border-bottom-color: #c41e3a;
}

.testimonials-magazine {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #ffffff;
}

.container-testimonials {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-magazine h2 {
    font-size: 48px;
    margin-bottom: 50px;
    text-align: center;
    color: #ffffff;
}

.testimonials-columns {
    display: flex;
    gap: 50px;
}

.testimonial-card {
    flex: 1;
    padding: 35px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #c41e3a;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: #e0e0e0;
}

.testimonial-card cite {
    font-size: 15px;
    font-style: normal;
    color: #aaa;
    font-weight: 600;
}

.contact-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

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

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

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

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

.contact-info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid #c41e3a;
}

.contact-details p {
    margin-bottom: 12px;
    font-size: 16px;
}

.contact-form-magazine {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

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

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

.form-submit-btn {
    width: 100%;
    padding: 14px 32px;
    background-color: #c41e3a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 25px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #777;
}

.page-header {
    padding: 60px 0;
    background-color: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

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

.page-header h1 {
    font-size: 52px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 15px;
    max-width: 700px;
}

.about-story {
    padding: 80px 0;
}

.about-layout {
    display: flex;
    gap: 60px;
}

.about-main-content {
    flex: 2.5;
}

.about-main-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    margin-top: 35px;
    color: #1a1a1a;
}

.about-main-content h2:first-child {
    margin-top: 0;
}

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

.about-main-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #3a3a3a;
}

.about-main-content img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    object-fit: cover;
}

.about-highlight-section {
    background-color: #f9f9f9;
    padding: 40px;
    margin: 50px 0;
}

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

.value-item {
    flex: 1;
    min-width: 220px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #c41e3a;
}

.value-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #3a3a3a;
}

.about-sidebar {
    flex: 1;
}

.sidebar-box {
    background-color: #f9f9f9;
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-box h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.stats-list {
    list-style: none;
}

.stats-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    color: #3a3a3a;
}

.stats-list li:last-child {
    border-bottom: none;
}

.stats-list strong {
    color: #c41e3a;
    font-size: 18px;
}

.sidebar-box img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    object-fit: cover;
}

.sidebar-caption {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.cta-box {
    background-color: #c41e3a;
    color: #ffffff;
}

.cta-box h4 {
    color: #ffffff;
}

.cta-box p {
    color: #ffffff;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #c41e3a;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.cta-button:hover {
    background-color: #f0f0f0;
}

.services-header {
    background-color: #1a1a1a;
}

.services-header h1 {
    color: #ffffff;
}

.services-header .page-subtitle {
    color: #e0e0e0;
}

.services-full {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 70px;
    background-color: #fafafa;
    padding: 50px;
}

.service-header-full {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid #c41e3a;
}

.service-title-section h2 {
    font-size: 44px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.service-duration {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

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

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #c41e3a;
    display: block;
    line-height: 1;
}

.price-note {
    font-size: 14px;
    color: #666;
    display: block;
    margin-top: 5px;
}

.service-image-block {
    margin-bottom: 40px;
    background-color: #e0e0e0;
}

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

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

.service-description h4 {
    font-size: 24px;
    margin-bottom: 18px;
    margin-top: 30px;
    color: #1a1a1a;
}

.service-description p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.service-includes {
    list-style: none;
    margin-top: 20px;
}

.service-includes li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #3a3a3a;
}

.service-includes li:before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #c41e3a;
    font-size: 24px;
}

.custom-examples {
    list-style: none;
    margin: 25px 0;
}

.custom-examples li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #3a3a3a;
    line-height: 1.6;
}

.custom-examples li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #c41e3a;
    font-weight: 700;
}

.cta-button-large {
    display: inline-block;
    background-color: #c41e3a;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}

.cta-button-large:hover {
    background-color: #a01829;
}

.contact-page-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.container-contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.contact-method {
    margin-bottom: 45px;
}

.contact-method h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    border-bottom: 2px solid #c41e3a;
    padding-bottom: 8px;
    display: inline-block;
}

.contact-email-display {
    font-size: 18px;
    color: #3a3a3a;
    font-family: 'Courier New', monospace;
    margin-bottom: 10px;
}

.contact-address {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    font-style: normal;
}

.contact-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.contact-info-box {
    background-color: #f9f9f9;
    padding: 35px;
    margin: 40px 0;
}

.contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.contact-info-box ul {
    margin-left: 20px;
}

.contact-info-box li {
    font-size: 15px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 8px;
}

.contact-privacy-note {
    background-color: #fff9e6;
    padding: 20px;
    border-left: 4px solid #c41e3a;
    margin-top: 40px;
}

.contact-privacy-note p {
    font-size: 14px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0;
}

.contact-privacy-note a {
    color: #c41e3a;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-privacy-note a:hover {
    border-bottom-color: #c41e3a;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    min-height: 70vh;
}

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

.thanks-content {
    background-color: #ffffff;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.thanks-main-text {
    font-size: 20px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 40px;
}

.thanks-service-info {
    background-color: #f0f8ff;
    padding: 20px 30px;
    border-left: 4px solid #c41e3a;
    margin-bottom: 40px;
}

.thanks-service-info p {
    font-size: 17px;
    color: #3a3a3a;
    margin: 0;
}

.thanks-next-steps {
    margin-bottom: 45px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-steps {
    margin-left: 25px;
}

.thanks-steps li {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 12px;
}

.thanks-additional-info h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.thanks-additional-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 25px;
}

.thanks-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.thanks-link-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #c41e3a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.thanks-link-button:hover {
    background-color: #a01829;
}

.thanks-contact-reminder {
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.thanks-contact-reminder p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.container-legal h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 45px;
}

.legal-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
    border-bottom: 2px solid #c41e3a;
    padding-bottom: 10px;
}

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

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 18px;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-section li {
    font-size: 15px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.legal-section a {
    color: #c41e3a;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.legal-section a:hover {
    border-bottom-color: #c41e3a;
}

@media (max-width: 1024px) {
    .intro-columns,
    .narrative-split,
    .contact-layout,
    .about-layout,
    .testimonials-columns {
        flex-direction: column;
    }

    .hero-text-magazine h1 {
        font-size: 48px;
    }

    .venues-grid-magazine {
        flex-direction: column;
    }

    .venue-card-large,
    .venue-card-medium {
        min-width: 100%;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

    .service-header-full {
        flex-direction: column;
    }

    .service-price-large {
        text-align: left;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .ad-notice {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        flex-basis: 100%;
        text-align: center;
    }

    .hero-text-magazine h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .container-magazine,
    .container,
    .container-wide {
        padding: 0 20px;
    }

    .intro-main h2 {
        font-size: 32px;
    }

    .section-title-magazine,
    .section-title-centered {
        font-size: 36px;
    }

    .services-magazine-grid {
        flex-direction: column;
    }

    .service-card-mag {
        max-width: 100%;
    }

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

    .thanks-content h1 {
        font-size: 36px;
    }

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

    .service-detail-card {
        padding: 30px 20px;
    }

    .service-title-section h2 {
        font-size: 32px;
    }

    .price-amount {
        font-size: 36px;
    }
}