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

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

.main-header {
    background-color: #1a252f;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.ad-notice {
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 13px;
    color: #ecf0f1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    gap: 20px;
    flex-wrap: wrap;
}

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

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

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

.hero-magazine {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrap {
    position: relative;
    height: 600px;
    background-color: #34495e;
    overflow: hidden;
}

.hero-image-wrap 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.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
}

.hero-subtext {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.main-column {
    flex: 2;
    min-width: 300px;
}

.main-column h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
    line-height: 1.3;
}

.main-column p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.side-column {
    flex: 1;
    min-width: 280px;
}

.highlight-box {
    background-color: #ffffff;
    padding: 30px;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.highlight-box ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.visual-break {
    padding: 60px 0;
    background-color: #ffffff;
}

.dual-column-image {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.image-card {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
}

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

.text-card {
    flex: 1;
    min-width: 300px;
}

.text-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.text-card p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a252f;
}

.section-intro {
    font-size: 19px;
    text-align: center;
    margin-bottom: 60px;
    color: #34495e;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-magazine-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-feature-card {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    flex-wrap: wrap;
}

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

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

.service-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

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

.service-content p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #34495e;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    padding: 12px 25px;
    border: 2px solid #3498db;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

.service-mini-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.service-mini-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

.service-mini-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #34495e;
}

.service-mini-card .service-price {
    font-size: 26px;
    margin: 15px 0;
}

.service-row-reverse {
    display: flex;
    gap: 40px;
    flex-direction: row-reverse;
    align-items: center;
    flex-wrap: wrap;
}

.service-text-block {
    flex: 1.5;
    min-width: 300px;
}

.service-text-block h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-text-block p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #34495e;
}

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

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

.service-wide-card {
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.service-wide-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.service-wide-text {
    flex: 1.5;
    min-width: 300px;
}

.service-wide-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-wide-text p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #34495e;
}

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

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

.full-width-mini {
    max-width: 100%;
}

.testimonial-section {
    padding: 80px 0;
    background-color: #34495e;
    color: #ffffff;
}

.testimonial-magazine {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-large {
    flex: 2;
    min-width: 300px;
}

.testimonial-small {
    flex: 1;
    min-width: 280px;
}

blockquote {
    border-left: 5px solid #3498db;
    padding-left: 25px;
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
}

blockquote p {
    margin-bottom: 15px;
}

blockquote footer {
    font-size: 16px;
    font-style: normal;
    margin-top: 15px;
    color: #ecf0f1;
}

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

.approach-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.approach-image {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
}

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

.approach-text {
    flex: 1;
    min-width: 300px;
}

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

.approach-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #34495e;
}

.cta-section {
    padding: 80px 0;
    background-color: #1a252f;
    color: #ffffff;
}

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

.cta-magazine-style h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-magazine-style p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    padding: 14px 38px;
    border: 2px solid #ffffff;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #1a252f;
}

.main-footer {
    background-color: #0f1419;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-magazine {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 15px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 14px;
    color: #7f8c8d;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.close-modal {
    color: #7f8c8d;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #2c3e50;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a252f;
}

.selected-service-display {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #ecf0f1;
    border-radius: 5px;
    font-size: 16px;
}

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

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

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

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 35px;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.page-hero {
    background: linear-gradient(135deg, #1a252f 0%, #34495e 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 60px;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #ecf0f1;
}

.about-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.about-magazine-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.about-main-column {
    flex: 2;
    min-width: 300px;
}

.about-main-column h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a252f;
}

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

.about-main-column p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #34495e;
    line-height: 1.7;
}

.about-image-inline {
    margin: 40px 0;
    background-color: #ecf0f1;
}

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

.about-sidebar {
    flex: 1;
    min-width: 280px;
}

.sidebar-box {
    background-color: #f8f9fa;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.sidebar-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a252f;
}

.sidebar-box ul {
    list-style: none;
    padding: 0;
}

.sidebar-box ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #34495e;
}

.sidebar-box ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 20px;
}

.sidebar-image {
    background-color: #ecf0f1;
}

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

.philosophy-section {
    margin-top: 60px;
    padding: 60px 0;
    background-color: #f8f9fa;
}

.philosophy-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a252f;
}

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

.philosophy-item {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

.philosophy-item p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

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

.services-intro {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    color: #34495e;
}

.services-detailed-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-full-card {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

.service-full-content {
    flex: 1;
    min-width: 300px;
}

.service-full-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-full-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #34495e;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-includes li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #34495e;
}

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

.service-price-large {
    font-size: 38px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.services-note {
    margin-top: 60px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.services-note h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-note p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #34495e;
    line-height: 1.7;
}

.contact-content {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.contact-info-section {
    flex: 1;
    min-width: 300px;
}

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-info-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #1a252f;
}

.contact-info-section p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #34495e;
    line-height: 1.7;
}

.contact-details {
    margin-top: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 0;
    color: #1a252f;
}

.contact-text {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
}

.contact-note {
    margin-top: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.contact-image {
    margin-top: 40px;
    background-color: #ecf0f1;
}

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

.location-section {
    flex: 1;
    min-width: 300px;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.location-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #1a252f;
}

.location-section p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #34495e;
    line-height: 1.7;
}

.accessibility-info {
    margin-top: 40px;
    padding: 30px;
    background-color: #e8f5e9;
    border-radius: 5px;
}

.thanks-hero {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 60px;
}

.thanks-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.thanks-subtitle {
    font-size: 20px;
    color: #ecf0f1;
}

.thanks-details {
    padding: 60px 0;
    background-color: #ffffff;
}

.thanks-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.thanks-main {
    flex: 2;
    min-width: 300px;
}

.thanks-main h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-main h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #1a252f;
}

.thanks-main p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #34495e;
    line-height: 1.7;
}

.thanks-service-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 5px;
    margin: 30px 0;
}

.service-name-display {
    font-size: 20px;
    font-weight: 600;
    color: #1a252f;
}

.next-steps ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.next-steps ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #34495e;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 18px;
}

.preparation-info {
    margin-top: 30px;
}

.thanks-image {
    margin-top: 40px;
    background-color: #ecf0f1;
}

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

.thanks-sidebar {
    flex: 1;
    min-width: 280px;
}

.sidebar-card {
    background-color: #f8f9fa;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a252f;
}

.sidebar-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #34495e;
    line-height: 1.7;
}

.contact-info-text {
    color: #3498db;
    font-weight: 600;
}

.btn-small {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-right: 10px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

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

.legal-content {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.legal-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a252f;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #1a252f;
}

.legal-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #34495e;
    line-height: 1.7;
}

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

.legal-text ul li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #34495e;
    line-height: 1.7;
}

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

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

    .hero-subtext {
        font-size: 16px;
    }

    .main-column h2 {
        font-size: 28px;
    }

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

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

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

    .cta-magazine-style h2 {
        font-size: 28px;
    }

    .modal-content {
        margin: 10% 20px;
        padding: 30px;
    }
}