/* Reset and Base Styles */
/* Nice Page Styles */
.nic-hero {
    padding: 12rem 10% 8rem;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/nice.jpg') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Hamburg (HAM) Page Styles */
.ham-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/hamburg.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.ham-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.ham-hero h1 {
    font-size: 3.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ham-hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.ham-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.ham-bg-light {
    background-color: var(--bg-light);
    max-width: 100%;
}

.ham-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    text-align: center;
}

.ham-intro-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

.ham-image-text-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.ham-image-text-block.reverse {
    flex-direction: row-reverse;
}

.ham-image-wrapper {
    flex: 1;
}

.ham-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
    height: 400px;
}

.ham-text-wrapper {
    flex: 1;
}

.ham-text-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.ham-text-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.ham-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.ham-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.ham-card {
    background: var(--bg-dark);
    border: 1px solid rgba(241, 196, 15, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ham-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.15);
}

.ham-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.ham-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.ham-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.ham-text-box {
    background: rgba(255,255,255,0.02);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.05);
}

.ham-faq-container {
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.1);
    overflow: hidden;
}

.ham-faq-item {
    border-bottom: 1px solid rgba(241, 196, 15, 0.1);
}

.ham-faq-item:last-child {
    border-bottom: none;
}

.ham-faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: bold;
    position: relative;
    background: rgba(0,0,0,0.2);
    transition: background 0.3s ease;
}

.ham-faq-question:hover {
    background: rgba(241, 196, 15, 0.05);
}

.ham-faq-question::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.ham-faq-item.active .ham-faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.ham-faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--bg-dark);
}

.ham-faq-item.active .ham-faq-answer {
    padding: 1.5rem 2rem;
    max-height: 600px;
}

.ham-faq-answer p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

.ham-cta-banner {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(26, 10, 26, 0.95), rgba(45, 15, 45, 0.95));
    margin: 4rem auto;
    border-radius: 20px;
    max-width: 1200px;
    border: 1px solid rgba(241, 196, 15, 0.3);
    box-shadow: 0 0 50px rgba(241, 196, 15, 0.1);
}

.ham-cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.ham-cta-banner p {
    font-size: 1.2rem;
    margin: 0 auto 3rem;
    max-width: 800px;
    line-height: 1.8;
}

/* Responsive Styles for Hamburg Page */
@media (max-width: 1024px) {
    .ham-hero h1 { font-size: 3rem; }
    .ham-section { padding: 5rem 5%; }
    .ham-image-text-block { gap: 3rem; }
    .ham-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .ham-grid-2 { grid-template-columns: 1fr; }
    .ham-text-box { padding: 2rem !important; border-left: none !important; border-top: 1px solid rgba(241,196,15,0.2); }
}

@media (max-width: 768px) {
    .ham-hero h1 { font-size: 2.4rem; }
    .ham-hero p { font-size: 1.1rem; }
    .ham-image-text-block, .ham-image-text-block.reverse {
        flex-direction: column;
    }
    .ham-text-wrapper h2 { text-align: center; }
    .ham-image-wrapper img { height: 300px; }
    .ham-grid-3 { grid-template-columns: 1fr; }
    .ham-section h2 { font-size: 2.2rem; }
    .ham-cta-banner h2 { font-size: 2.2rem; }
    .ham-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
    .ham-faq-question { font-size: 1.1rem; padding: 1.2rem 1.5rem; }
    .ham-faq-answer { padding: 0 1.5rem; }
    .ham-faq-item.active .ham-faq-answer { padding: 1.2rem 1.5rem; }
}/* Germany (DE) Page Styles */
.de-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.7), rgba(26, 10, 26, 0.7)), url('images/hero-bg.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.de-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.de-hero h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.de-hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.de-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.de-bg-light {
    background-color: var(--bg-light);
    max-width: 100%;
}

.de-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
}

.de-image-text-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.de-image-text-block.reverse {
    flex-direction: row-reverse;
}

.de-image-wrapper {
    flex: 1;
}

.de-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
    height: 400px;
}

.de-text-wrapper {
    flex: 1;
}

.de-text-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.de-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.de-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.de-card {
    background: var(--bg-dark);
    border: 1px solid rgba(241, 196, 15, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.de-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.15);
}

.de-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.de-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.de-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.de-list {
    list-style: none;
    padding: 0;
}

.de-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.de-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.de-table-container {
    overflow-x: auto;
    margin-top: 2rem;
}

.de-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    overflow: hidden;
}

.de-table th, .de-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241, 196, 15, 0.1);
}

.de-table th {
    background: rgba(241, 196, 15, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.de-table td {
    font-size: 1.1rem;
    line-height: 1.6;
}

.de-cta-banner {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(rgba(26, 10, 26, 0.85), rgba(26, 10, 26, 0.85)), url('images/hero-bg1.jpg') center/cover no-repeat;
    margin: 4rem auto;
    border-radius: 20px;
    max-width: 1200px;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.de-cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.de-cta-banner p {
    font-size: 1.2rem;
    margin: 0 auto 3rem;
    max-width: 800px;
    line-height: 1.8;
}

/* Responsive Styles for Germany Page */
@media (max-width: 1024px) {
    .de-hero h1 { font-size: 3rem; }
    .de-section { padding: 5rem 5%; }
    .de-image-text-block { gap: 2rem; }
    .de-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .de-hero h1 { font-size: 2.2rem; }
    .de-hero p { font-size: 1.1rem; }
    .de-image-text-block, .de-image-text-block.reverse {
        flex-direction: column;
    }
    .de-image-wrapper img { height: 300px; }
    .de-grid-3, .de-grid-2 { grid-template-columns: 1fr; }
    .de-section h2 { font-size: 2.2rem; }
    .de-cta-banner h2 { font-size: 2.2rem; }
    .de-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
}

/* Berlin (BER) Page Styles */
.ber-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/hero-bg1.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.ber-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.ber-hero h1 {
    font-size: 3.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ber-hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.ber-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.ber-bg-light {
    background-color: var(--bg-light);
    max-width: 100%;
}

.ber-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    text-align: center;
}

.ber-intro-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

.ber-image-text-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.ber-image-text-block.reverse {
    flex-direction: row-reverse;
}

.ber-image-wrapper {
    flex: 1;
}

.ber-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
    height: 400px;
}

.ber-text-wrapper {
    flex: 1;
}

.ber-text-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.ber-text-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.ber-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.ber-card {
    background: var(--bg-dark);
    border: 1px solid rgba(241, 196, 15, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ber-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.15);
}

.ber-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.ber-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.ber-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.ber-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.ber-card-horizontal {
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    padding: 2.5rem;
    transition: background 0.3s ease;
}

.ber-card-horizontal:hover {
    background: rgba(255,255,255,0.06);
}

.ber-card-horizontal h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.ber-card-horizontal p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.ber-table-container {
    overflow-x: auto;
    margin-top: 3rem;
}

.ber-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    overflow: hidden;
}

.ber-table th, .ber-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241, 196, 15, 0.1);
}

.ber-table th {
    background: rgba(241, 196, 15, 0.1);
    color: var(--primary-color);
    font-size: 1.3rem;
    width: 50%;
}

.ber-table td {
    font-size: 1.1rem;
    line-height: 1.6;
}

.ber-cta-banner {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(26, 10, 26, 0.95), rgba(45, 15, 45, 0.95));
    margin: 4rem auto;
    border-radius: 20px;
    max-width: 1200px;
    border: 1px solid rgba(241, 196, 15, 0.3);
    box-shadow: 0 0 50px rgba(241, 196, 15, 0.1);
}

.ber-cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.ber-cta-banner p {
    font-size: 1.2rem;
    margin: 0 auto 3rem;
    max-width: 800px;
    line-height: 1.8;
}

/* Responsive Styles for Berlin Page */
@media (max-width: 1024px) {
    .ber-hero h1 { font-size: 3rem; }
    .ber-section { padding: 5rem 5%; }
    .ber-image-text-block { gap: 3rem; }
    .ber-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .ber-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .ber-hero h1 { font-size: 2.4rem; }
    .ber-hero p { font-size: 1.1rem; }
    .ber-image-text-block, .ber-image-text-block.reverse {
        flex-direction: column;
    }
    .ber-text-wrapper h2 { text-align: center; }
    .ber-image-wrapper img { height: 300px; }
    .ber-grid-3 { grid-template-columns: 1fr; }
    .ber-section h2 { font-size: 2.2rem; }
    .ber-cta-banner h2 { font-size: 2.2rem; }
    .ber-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
}

.nic-hero h1 {
    font-size: 4.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.nic-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin-bottom: 3.5rem;
    line-height: 1.8;
}

.nic-section {
    padding: 5rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.nic-section h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.nic-image-text-block {
    display: block;
    margin-bottom: 4rem;
}

.nic-image-text-block::after {
    content: "";
    display: table;
    clear: both;
}

.nic-image-wrapper {
    float: left;
    width: 45%;
    margin-right: 4rem;
    margin-bottom: 2rem;
}

.nic-image-text-block.reverse .nic-image-wrapper {
    float: right;
    margin-right: 0;
    margin-left: 4rem;
}

.nic-image-wrapper img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.nic-text-wrapper {
    width: auto;
}

.nic-text-wrapper h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.nic-text-wrapper p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.nic-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.nic-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 4rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(241, 196, 15, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.nic-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.nic-card h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.nic-list {
    list-style: none;
    margin-top: 2rem;
}

.nic-list li {
    padding: 1.2rem 0;
    padding-left: 3rem;
    position: relative;
    font-size: 1.15rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nic-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.nic-table-container {
    overflow-x: auto;
    margin: 4rem 0;
    border-radius: 15px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(241, 196, 15, 0.1);
}

.nic-comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.nic-comparison-table th, .nic-comparison-table td {
    padding: 1.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(241, 196, 15, 0.05);
}

.nic-comparison-table th {
    background: rgba(241, 196, 15, 0.08);
    color: var(--primary-color);
    font-size: 1.2rem;
    white-space: nowrap;
}

.nic-comparison-table td {
    color: #e0e0e0;
    line-height: 1.6;
}

.nic-cta-banner {
    background: linear-gradient(135deg, rgba(26, 10, 26, 0.95), rgba(45, 15, 45, 0.95));
    padding: 8rem 10%;
    text-align: center;
    border-radius: 30px;
    margin: 8rem 10%;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(241, 196, 15, 0.1);
}

.nic-cta-banner h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.nic-cta-banner p {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

@media (max-width: 1200px) {
    .nic-hero h1 { font-size: 3.8rem; }
    .nic-section { padding: 6rem 5%; }
    .nic-image-wrapper { margin-right: 3rem; }
    .nic-image-text-block.reverse .nic-image-wrapper { margin-left: 3rem; }
}

@media (max-width: 992px) {
    .nic-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .nic-image-wrapper, .nic-image-text-block.reverse .nic-image-wrapper {
        float: none;
        width: 100%;
        margin: 0 0 3rem 0;
    }
    .nic-text-wrapper h2 { text-align: center; }
    .nic-list li { text-align: left; }
}

.nic-cta-banner .cta-button {
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .nic-cta-banner .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    .nic-hero { padding: 10rem 5% 6rem; }
    .nic-hero h1 { font-size: 2.8rem; }
    .nic-hero p { font-size: 1.2rem; }
    .nic-section h2 { font-size: 2.2rem; }
    .nic-image-wrapper img { 
        height: auto;
        min-height: 300px;
    }
    .nic-grid-3 { grid-template-columns: 1fr; }
    .nic-cta-banner {
        margin: 4rem 5%;
        padding: 4rem 5%;
        border-radius: 20px;
    }
    .nic-cta-banner h2 { font-size: 2.2rem; }
    .nic-cta-banner p { font-size: 1.1rem; }
    .nic-table-container { margin: 2rem 0; }
    .nic-comparison-table th, .nic-comparison-table td { padding: 1.2rem; font-size: 0.95rem; }
}
/* Bucharest Page Styles */
.buc-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 6rem 5%;
    margin-top: 60px;
}

.buc-hero-content {
    max-width: 900px;
    z-index: 2;
    background: rgba(26, 10, 26, 0.6);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.buc-hero h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.buc-hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.buc-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.buc-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.buc-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1.5rem auto;
}

.buc-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.buc-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.buc-card {
    background: rgba(44, 26, 44, 0.4);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(241, 196, 15, 0.1);
    text-align: center;
}

.buc-card:hover {
    transform: translateY(-15px);
    background: rgba(44, 26, 44, 0.6);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.buc-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.buc-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.buc-cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 1px;
}

.buc-cta-button:hover {
    background-color: #d4ac0d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
    color: var(--secondary-color);
}

.buc-image-text-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.buc-image-text-block.reverse {
    flex-direction: row-reverse;
}

.buc-image-wrapper {
    flex: 1;
}

.buc-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(241, 196, 15, 0.1);
}

.buc-text-wrapper {
    flex: 1;
}

.buc-text-wrapper h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.buc-text-wrapper h2::after {
    margin: 1rem 0;
}

.buc-cta-banner {
    background-color: var(--bg-light);
    padding: 6rem 5%;
    text-align: center;
    border-top: 1px solid rgba(241, 196, 15, 0.1);
}

.buc-cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.buc-cta-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.buc-list {
    margin: 2rem 0;
}

.buc-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.buc-list-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.3rem;
}

@media (max-width: 1200px) {
    .buc-section {
        padding: 5rem 5%;
    }
}

@media (max-width: 992px) {
    .buc-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .buc-hero h1 {
        font-size: 3rem;
    }
    .buc-image-text-block, .buc-image-text-block.reverse {
        flex-direction: column;
        gap: 3rem;
    }
    .buc-grid-2 {
        grid-template-columns: 1fr;
    }
    .buc-cta-banner h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .buc-hero h1 {
        font-size: 2.5rem;
    }
    .buc-section h2 {
        font-size: 2.2rem;
    }
    .buc-cta-banner h2 {
        font-size: 2rem;
    }
    .buc-grid-3 {
        grid-template-columns: 1fr;
    }
}
/* Timisoara Page Styles */
.tim-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 6rem 5%;
    margin-top: 60px;
}

.tim-hero-content {
    max-width: 900px;
    z-index: 2;
    background: rgba(26, 10, 26, 0.6);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.tim-hero h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.tim-hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.tim-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.tim-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.tim-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1.5rem auto;
}

.tim-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.tim-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.tim-card {
    background: rgba(44, 26, 44, 0.4);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(241, 196, 15, 0.1);
    text-align: center;
    height: 100%;
}

.tim-card:hover {
    transform: translateY(-15px);
    background: rgba(44, 26, 44, 0.6);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.tim-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.tim-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tim-cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 1px;
}

.tim-cta-button:hover {
    background-color: #d4ac0d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
    color: var(--secondary-color);
}

.tim-image-text-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.tim-image-text-block.reverse {
    flex-direction: row-reverse;
}

.tim-image-wrapper {
    flex: 1;
}

.tim-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(241, 196, 15, 0.1);
}

.tim-text-wrapper {
    flex: 1;
}

.tim-text-wrapper h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.tim-text-wrapper h2::after {
    margin: 1rem 0;
}

.tim-cta-banner {
    background-color: var(--bg-light);
    padding: 6rem 5%;
    text-align: center;
    border-top: 1px solid rgba(241, 196, 15, 0.1);
    border-radius: 30px;
    margin: 4rem 10%;
}

.tim-cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.tim-cta-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.tim-list {
    margin: 2rem 0;
}

.tim-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.tim-list-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.tim-table-container {
    overflow-x: auto;
    margin: 4rem 0;
    border-radius: 20px;
    border: 1px solid rgba(241, 196, 15, 0.2);
    background: rgba(44, 26, 44, 0.4);
}

.tim-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.tim-table th, .tim-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tim-table th {
    color: var(--primary-color);
    background: rgba(241, 196, 15, 0.1);
    font-size: 1.2rem;
}

.tim-table td {
    color: var(--text-muted);
}

@media (max-width: 1200px) {
    .tim-section {
        padding: 5rem 5%;
    }
}

@media (max-width: 992px) {
    .tim-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .tim-hero h1 {
        font-size: 3rem;
    }
    .tim-image-text-block, .tim-image-text-block.reverse {
        flex-direction: column;
        gap: 3rem;
    }
    .tim-grid-2 {
        grid-template-columns: 1fr;
    }
    .tim-cta-banner h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .tim-hero h1 {
        font-size: 2.5rem;
    }
    .tim-section h2 {
        font-size: 2.2rem;
    }
    .tim-cta-banner h2 {
        font-size: 2rem;
    }
    .tim-grid-3 {
        grid-template-columns: 1fr;
    }
    .tim-cta-banner {
        margin: 2rem 5%;
        padding: 4rem 5%;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f1c40f; /* Gold */
    --secondary-color: #340c1c; /* Dark Burgundy */
    --accent-color: #e67e22; /* Orange-Gold */
    --text-color: #ffffff;
    --text-muted: #eeeeee;
    --bg-dark: #1a0a1a; /* Very Dark Purple/Burgundy */
    --bg-light: #2c1a2c;
    --font-main: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-color);
    font-family: var(--font-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text {
    font-family: var(--font-main);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Header & Navigation */
header {
    background-color: rgba(26, 10, 26, 0.95);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(241, 196, 15, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-img {
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--bg-light);
    min-width: 250px;
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    padding: 1rem;
    border-radius: 8px;
    z-index: 1001;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.dropdown-content::-webkit-scrollbar {
    width: 8px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-radius: 0 8px 8px 0;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    z-index: 1002;
    padding: 5px;
}

.mobile-menu-btn svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    header {
        padding: 1rem 3%;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        transition: max-height 0.4s ease-in-out, padding 0.3s ease;
        border-bottom: 1px solid rgba(241, 196, 15, 0.1);
        z-index: 999;
        display: flex; /* Ensure it's a flex container when visible */
    }

    nav.active {
        max-height: 80vh;
        padding: 1.5rem 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links a {
        padding: 1rem 5%;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        padding: 1rem 5%;
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: rgba(255,255,255,0.03);
        max-height: 0; /* Changed from none to 0 for transition */
        overflow: hidden;
        padding: 0 5% 0 8%;
        display: block; /* Always block but height 0 */
        border: none;
        border-radius: 0;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-content {
        max-height: 500px;
        padding: 0.5rem 5% 1rem 8%;
    }

    .cta-button {
        margin: 1.5rem 5% 0;
        width: 90%;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Scrollbar for mobile nav */
    nav::-webkit-scrollbar {
        width: 4px;
    }

    nav::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .content-block {
        flex-direction: column !important;
        gap: 2rem;
    }

    section {
        padding: 4rem 5%;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 10, 26, 0.7), rgba(26, 10, 26, 0.7)), url('images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    margin-top: 60px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Common */
section {
    padding: 5rem 10%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1rem auto;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Why Us Section - Different Style */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.diff-card {
    background: transparent;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.15);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.05), transparent);
    z-index: 0;
}

.diff-card:hover {
    background: rgba(241, 196, 15, 0.03);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.diff-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.2);
    position: relative;
    z-index: 1;
}

.diff-card svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
    stroke-width: 1.5;
}

.diff-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.diff-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .diff-grid {
        grid-template-columns: 1fr;
    }
}

.card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(241, 196, 15, 0.1);
    transition: var(--transition);
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.card svg {
    width: 50px;
    height: 50px;
    fill: var(--primary-color);
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Features Section */
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Country Section */
.country-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Service Page Specific Styles */
.service-hero {
    padding: 8rem 10% 4rem;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('images/hero-bg1.jpg') center/cover no-repeat;
}

.service-hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.service-section {
    padding: 4rem 10%;
}

.service-grid-27 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(241, 196, 15, 0.1);
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-item-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-table-container {
    overflow-x: auto;
    margin-top: 3rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.pricing-table th, .pricing-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-table th {
    background: rgba(241, 196, 15, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Oslo Page Specific Styles */
.osl-hero {
    padding: 10rem 10% 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/oslo.jpg') center/cover no-repeat;
}

.osl-hero h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.osl-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
}

.osl-section {
    padding: 5rem 10%;
}

.osl-section:nth-child(even) {
    background-color: var(--bg-light);
}

.osl-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.osl-content-block.reverse {
    direction: rtl;
}

.osl-content-block.reverse .osl-text {
    direction: ltr;
}

.osl-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.osl-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.osl-image-wrapper img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.osl-club-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.osl-club-card {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(241, 196, 15, 0.15);
    transition: var(--transition);
}

.osl-club-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.osl-club-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.osl-club-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.osl-club-card .address {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: bold;
}

.osl-table-container {
    overflow-x: auto;
    margin: 3rem 0;
}

.osl-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-dark);
    border-radius: 12px;
    overflow: hidden;
}

.osl-table th, .osl-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.osl-table th {
    background: rgba(241, 196, 15, 0.1);
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .osl-content-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .osl-club-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .osl-hero h1 {
        font-size: 2.5rem;
    }
    .osl-club-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-table .feature-name {
    text-align: left;
    font-weight: 600;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

@media (max-width: 992px) {
    .service-grid-27 {
        grid-template-columns: repeat(2, 1fr);
    }
    .step-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-grid-27 {
        grid-template-columns: 1fr;
    }
    .step-grid {
        grid-template-columns: 1fr;
    }
    .service-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .country-grid {
        grid-template-columns: 1fr;
    }
}

.country-card {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.country-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: var(--transition);
}

.country-card:hover img {
    filter: brightness(0.7) scale(1.05);
}

.country-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    z-index: 1;
}

.country-name {
    display: block;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.country-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Content Sections */
.content-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.content-block:nth-child(even):not(.reverse) {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

.content-img {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(241, 196, 15, 0.2);
    border-radius: 5px;
}

.faq-question {
    padding: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.faq-answer {
    padding: 0 1.2rem 1.2rem;
    color: var(--text-muted);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
footer {
    background-color: #0d050d;
    padding: 4rem 10% 2rem;
    border-top: 1px solid rgba(241, 196, 15, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Sugar Daddy Page Specific Styles */
.sd-hero {
    padding: 10rem 10% 6rem;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('images/sugar-daddy.jpg') center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sd-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.sd-hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sd-content-section {
    padding: 5rem 10%;
}

.sd-info-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: flex-start;
}

.sd-text-block h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.sd-text-block p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.sd-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sd-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sd-category-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.1);
    transition: var(--transition);
}

.sd-category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.sd-category-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.sd-category-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

.sd-allowance-container {
    margin-top: 4rem;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(241, 196, 15, 0.1);
}

.sd-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

/* London Page Specific Styles */
.lon-hero {
    padding: 12rem 10% 8rem;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/UK.jpg') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lon-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.lon-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

.lon-section {
    padding: 6rem 10%;
}

.lon-section:nth-child(even) {
    background-color: var(--bg-light);
}

.lon-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.lon-content-block.reverse {
    direction: rtl;
}

.lon-content-block.reverse .lon-text {
    direction: ltr;
}

.lon-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.lon-text p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Paris Page Specific Styles (Isolated) */
.par-hero {
    padding: 12rem 10% 8rem;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/paris.jpg') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.par-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.par-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

.par-section {
    padding: 6rem 10%;
}

.par-section:nth-child(even) {
    background-color: var(--bg-light);
}

.par-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.par-content-block.reverse {
    display: flex;
    flex-direction: row-reverse;
}

.par-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.par-text p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.par-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    height: 100%;
}

.par-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.par-image-wrapper img:hover {
    transform: scale(1.05);
}

.par-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.par-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.1);
    transition: var(--transition);
}

.par-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.par-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.par-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.par-list {
    list-style: none;
    margin-top: 1.5rem;
}

.par-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.par-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.par-cta-banner {
    background: linear-gradient(45deg, #1a0a1a, #2d0a2d);
    padding: 6rem 10%;
    text-align: center;
    border-radius: 30px;
    margin: 4rem 10%;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.par-cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.par-cta-banner p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.par-table-container {
    margin-top: 3rem;
    overflow-x: auto;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.1);
}

.par-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
}

.par-table th, .par-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241, 196, 15, 0.05);
}

.par-table th {
    background: rgba(241, 196, 15, 0.05);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.par-table td {
    color: var(--text-muted);
}

@media (max-width: 1200px) {
    .par-content-block { gap: 3rem; }
    .par-text h2 { font-size: 2.4rem; }
}

@media (max-width: 992px) {
    .par-content-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .par-content-block.reverse {
        flex-direction: column;
    }
    .par-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .par-hero { padding: 10rem 5% 6rem; }
}

@media (max-width: 768px) {
    .par-grid-3 {
        grid-template-columns: 1fr;
    }
    .par-cta-banner {
        margin: 2rem 5%;
        padding: 4rem 5%;
    }
    .par-cta-banner h2 { font-size: 2.2rem; }
}

/* Marseille Page Specific Styles (Isolated) */
.mar-hero {
    padding: 12rem 10% 8rem;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/france.jpg') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mar-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.mar-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

.mar-section {
    padding: 6rem 10%;
}

.mar-section:nth-child(even) {
    background-color: var(--bg-light);
}

.mar-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.mar-content-block.reverse {
    display: flex;
    flex-direction: row-reverse;
}

.mar-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.mar-text p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.mar-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    height: 100%;
}

.mar-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mar-image-wrapper img:hover {
    transform: scale(1.05);
}

.mar-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.mar-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.1);
    transition: var(--transition);
}

.mar-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.mar-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.mar-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.mar-list {
    list-style: none;
    margin-top: 1.5rem;
}

.mar-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.mar-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.mar-cta-banner {
    background: linear-gradient(45deg, #1a0a1a, #2d0a2d);
    padding: 6rem 10%;
    text-align: center;
    border-radius: 30px;
    margin: 4rem 10%;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.mar-cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.mar-cta-banner p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mar-table-container {
    margin-top: 3rem;
    overflow-x: auto;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.1);
}

.mar-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
}

.mar-table th, .mar-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241, 196, 15, 0.05);
}

.mar-table th {
    background: rgba(241, 196, 15, 0.05);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.mar-table td {
    color: var(--text-muted);
}

@media (max-width: 1200px) {
    .mar-content-block { gap: 3rem; }
    .mar-text h2 { font-size: 2.4rem; }
}

@media (max-width: 992px) {
    .mar-content-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .mar-content-block.reverse {
        flex-direction: column;
    }
    .mar-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .mar-hero { padding: 10rem 5% 6rem; }
}

@media (max-width: 768px) {
    .mar-grid-3 {
        grid-template-columns: 1fr;
    }
    .mar-cta-banner {
        margin: 2rem 5%;
        padding: 4rem 5%;
    }
    .mar-cta-banner h2 { font-size: 2.2rem; }
}

.lon-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 1px solid rgba(241, 196, 15, 0.3);
    transition: var(--transition);
}

.lon-image-wrapper img:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
}

.lon-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.lon-card {
    background: var(--bg-dark);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.15);
    transition: var(--transition);
    height: 100%;
}

.lon-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-12px);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.1);
}

.lon-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.lon-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.lon-highlight {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}

.lon-table-container {
    overflow-x: auto;
    margin: 4rem 0;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.lon-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-dark);
}

.lon-table th, .lon-table td {
    padding: 1.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lon-table th {
    background: rgba(241, 196, 15, 0.15);
    color: var(--primary-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lon-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.lon-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.lon-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Lyon Page Styles */
.lyo-hero {
    padding: 12rem 10% 8rem;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/lyon.jpg') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lyo-hero h1 {
    font-size: 4.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.lyo-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
    line-height: 1.8;
}

.lyo-section {
    padding: 8rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.lyo-section h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.lyo-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 1.5rem auto 0;
}

.lyo-content-block {
    margin-bottom: 6rem;
}

.lyo-content-block p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.lyo-image-text-block {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin: 6rem 0;
}

.lyo-image-text-block.reverse {
    flex-direction: row-reverse;
}

.lyo-text-wrapper {
    flex: 1;
}

.lyo-image-wrapper {
    flex: 1;
}

.lyo-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 1px solid rgba(241, 196, 15, 0.3);
    transition: var(--transition);
}

.lyo-image-wrapper img:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
}

.lyo-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.lyo-card {
    background: var(--bg-dark);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.15);
    transition: var(--transition);
    height: 100%;
}

.lyo-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-12px);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.1);
}

.lyo-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.lyo-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.lyo-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.lyo-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.lyo-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.lyo-cta-banner {
    background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('images/france.jpg') center/cover no-repeat;
    padding: 8rem 5%;
    text-align: center;
    border-radius: 30px;
    margin: 8rem 10%;
    border: 1px solid var(--primary-color);
}

.lyo-cta-banner h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

.lyo-cta-banner p {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .lyo-hero h1 { font-size: 3.8rem; }
    .lyo-section { padding: 6rem 5%; }
    .lyo-image-text-block { gap: 4rem; }
}

@media (max-width: 992px) {
    .lyo-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .lyo-image-text-block, .lyo-image-text-block.reverse {
        flex-direction: column;
        text-align: center;
    }
    .lyo-image-wrapper img { height: 350px; }
}

@media (max-width: 768px) {
    .lyo-hero { padding: 10rem 5% 6rem; }
    .lyo-hero h1 { font-size: 2.8rem; }
    .lyo-hero p { font-size: 1.2rem; }
    .lyo-section h2 { font-size: 2.5rem; }
    .lyo-grid-3 { grid-template-columns: 1fr; }
    .lyo-cta-banner { margin: 5rem 5%; padding: 5rem 5%; }
    .lyo-cta-banner h2 { font-size: 2.2rem; }
}

.lon-cta-box {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('images/hero-bg.jpg') center/cover;
    border-radius: 25px;
    margin: 6rem 10%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 50px rgba(241, 196, 15, 0.15);
}

.lon-cta-box h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .lon-content-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .lon-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .lon-hero {
        padding: 10rem 5% 6rem;
    }
}

@media (max-width: 768px) {
    .lon-hero h1 {
        font-size: 2.8rem;
    }
    .lon-grid-3 {
        grid-template-columns: 1fr;
    }
    .lon-text h2 {
        font-size: 2.2rem;
    }
    .lon-image-wrapper img {
        height: 350px;
    }
}

/* Liverpool Page Specific Styles */
.liv-hero {
    padding: 12rem 10% 8rem;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/city6.jpg') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.liv-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.liv-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

.liv-section {
    padding: 6rem 10%;
}

.liv-section:nth-child(even) {
    background-color: var(--bg-light);
}

.liv-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.liv-content-block.reverse {
    direction: rtl;
}

.liv-content-block.reverse .liv-text {
    direction: ltr;
}

.liv-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.liv-text p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.liv-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 1px solid rgba(241, 196, 15, 0.3);
    transition: var(--transition);
}

.liv-image-wrapper img:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
}

.liv-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.liv-card {
    background: var(--bg-dark);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.15);
    transition: var(--transition);
    height: 100%;
}

.liv-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-12px);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.1);
}

.liv-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.liv-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.liv-highlight {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}

.liv-table-container {
    overflow-x: auto;
    margin: 4rem 0;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.liv-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-dark);
}

.liv-table th, .liv-table td {
    padding: 1.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.liv-table th {
    background: rgba(241, 196, 15, 0.15);
    color: var(--primary-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.liv-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.liv-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.liv-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.liv-cta-box {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('images/hero-bg.jpg') center/cover;
    border-radius: 25px;
    margin: 6rem 10%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 50px rgba(241, 196, 15, 0.15);
}

.liv-cta-box h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .liv-content-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .liv-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .liv-hero {
        padding: 10rem 5% 6rem;
    }
}

@media (max-width: 768px) {
    .liv-hero h1 {
        font-size: 2.8rem;
    }
    .liv-grid-3 {
        grid-template-columns: 1fr;
    }
    .liv-text h2 {
        font-size: 2.2rem;
    }
    .liv-image-wrapper img {
        height: 350px;
    }
}

.sd-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.sd-table th, .sd-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sd-table th {
    color: var(--primary-color);
    font-family: var(--font-main);
    font-size: 1.2rem;
}

.sd-table td {
    color: var(--text-muted);
}

.sd-safety-box {
    background: rgba(230, 126, 34, 0.05);
    border-left: 4px solid var(--accent-color);
    padding: 2.5rem;
    border-radius: 0 15px 15px 0;
    margin-top: 3rem;
}

.sd-safety-box h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.sd-safety-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.sd-safety-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.sd-safety-list svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

.sd-cities-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.sd-city-mini {
    position: relative;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
}

.sd-city-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.sd-city-mini span {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@media (max-width: 992px) {
    .sd-info-grid {
        grid-template-columns: 1fr;
    }
    .sd-safety-list {
        grid-template-columns: 1fr;
    }
    .sd-cities-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sd-cities-strip {
        grid-template-columns: 1fr;
    }
    .sd-allowance-container {
        padding: 1.5rem;
    }
}

/* Sugar Baby Page Specific Styles */
.sb-hero {
    padding: 10rem 10% 6rem;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('images/sugar-baby.jpg') center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sb-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.sb-hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sb-section {
    padding: 5rem 10%;
}

.sb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sb-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.sb-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.sb-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    width: 100%;
}

.sb-feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sb-feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.1);
    transition: var(--transition);
}

.sb-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.sb-feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sb-faq-item {
    background: var(--bg-light);
    margin-bottom: 1rem;
    border-radius: 10px;
    padding: 1.5rem;
}

.sb-faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.sb-cta-box {
    text-align: center;
    padding: 5rem 10%;
    background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('images/hero-bg1.jpg') center/cover;
    border-radius: 30px;
    margin: 4rem 10%;
}

@media (max-width: 992px) {
     .sb-grid {
         grid-template-columns: 1fr;
         gap: 2rem;
     }
     .sb-section {
         padding: 4rem 5%;
     }
     .sb-cta-box {
         margin: 2rem 5%;
     }
 }
 
 /* Sugar Mommy Page Specific Styles */
.sm-hero {
    padding: 10rem 10% 6rem;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('images/sugar-mommy.jpg') center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sm-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.sm-hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sm-section {
    padding: 5rem 10%;
}

.sm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sm-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.sm-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.sm-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    width: 100%;
}

.sm-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sm-type-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.1);
    transition: var(--transition);
}

.sm-type-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.sm-type-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sm-table-container {
    overflow-x: auto;
    margin: 3rem 0;
}

.sm-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
}

.sm-table th, .sm-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sm-table th {
    background: rgba(241, 196, 15, 0.1);
    color: var(--primary-color);
    font-weight: bold;
}

.sm-cta-box {
    text-align: center;
    padding: 5rem 10%;
    background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('images/hero-bg.jpg') center/cover;
    border-radius: 30px;
    margin: 4rem 10%;
}

/* Liverpool Page Specific Styles */
.liv-hero {
    padding: 12rem 10% 8rem;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/city6.jpg') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.liv-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-main);
    line-height: 1.1;
}

.liv-hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 3rem;
}

.liv-section {
    padding: 8rem 10%;
}

.liv-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.liv-content-block.reverse {
    direction: rtl;
}

.liv-content-block.reverse .liv-text {
    direction: ltr;
}

.liv-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.liv-text p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.liv-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.liv-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.liv-card {
    background: var(--bg-dark);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.15);
    transition: var(--transition);
    height: 100%;
}

.liv-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-12px);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.1);
}

.liv-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.liv-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.liv-highlight {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}

.liv-table-container {
    overflow-x: auto;
    margin: 4rem 0;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.liv-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-dark);
}

.liv-table th, .liv-table td {
    padding: 1.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.liv-table th {
    background: rgba(241, 196, 15, 0.15);
    color: var(--primary-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.liv-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.liv-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.liv-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.liv-cta-box {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('images/hero-bg1.jpg') center/cover;
    border-radius: 25px;
    margin: 4rem 0;
    border: 2px solid var(--primary-color);
}

.liv-cta-box h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .liv-content-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .liv-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .liv-hero {
        padding: 10rem 5% 6rem;
    }
}

@media (max-width: 768px) {
    .liv-hero h1 {
        font-size: 2.8rem;
    }
    .liv-grid-3 {
        grid-template-columns: 1fr;
    }
    .liv-text h2 {
        font-size: 2.2rem;
    }
    .liv-image-wrapper img {
        height: 350px;
    }
}

/* DK Page Styles */
.dk-section {
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
}

.dk-hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    margin-top: 80px;
}

.dk-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.dk-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.dk-hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.dk-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
    color: #eee;
}

.dk-content-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.dk-content-block.reverse {
    flex-direction: row-reverse;
}

.dk-text-wrapper {
    flex: 1;
}

.dk-text-wrapper h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.dk-text-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.dk-image-wrapper {
    flex: 1;
    position: relative;
}

.dk-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.dk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.dk-card {
    background: rgba(255,255,255,0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}

.dk-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: var(--primary-color);
}

.dk-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.dk-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.dk-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bbb;
}

.dk-list {
    list-style: none;
    margin-top: 1.5rem;
}

.dk-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.dk-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.dk-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 2rem;
}

.dk-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.dk-table th, .dk-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dk-table th {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.dk-table td {
    color: var(--text-muted);
}

.dk-highlight {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border 0.3s ease;
}

.dk-highlight:hover {
    border-bottom-color: var(--primary-color);
}

.dk-cta-banner {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/blurmale1.jpg') center/cover fixed;
    padding: 6rem 5%;
    text-align: center;
    border-radius: 40px;
    margin: 4rem 5%;
    border: 1px solid rgba(241, 196, 15, 0.3);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    transition: all 0.5s ease;
}

.dk-cta-banner:hover {
    transform: scale(1.01);
    border-color: rgba(241, 196, 15, 0.5);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

.dk-cta-banner h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 20px rgba(0,0,0,1);
    letter-spacing: 1px;
}

.dk-cta-banner p {
    font-size: 1.4rem;
    color: #fff;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 300;
}

.dk-cta-banner .cta-button {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--primary-color);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    font-weight: bold;
}

.dk-cta-banner .cta-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 50px rgba(241, 196, 15, 0.7);
    background: #fff;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .dk-content-block, .dk-content-block.reverse {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .dk-section {
        padding: 2rem 5%;
    }

    .dk-hero h1 {
        font-size: 2.5rem !important;
    }

    .dk-image-wrapper img {
        height: 300px;
    }

    .dk-cta-banner h2 {
        font-size: 2.2rem;
    }

    .dk-cta-banner p {
        font-size: 1.1rem;
    }
}
/* Copenhagen Page Styles */
.cph-section {
    padding: 3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
}

.cph-hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    margin-top: 80px;
}

.cph-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.cph-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.cph-hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cph-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.cph-content-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.cph-content-block.reverse {
    flex-direction: row-reverse;
}

.cph-text-wrapper {
    flex: 1;
}

.cph-text-wrapper h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cph-text-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.cph-image-wrapper {
    flex: 1;
    position: relative;
}

.cph-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.cph-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.cph-card {
    background: rgba(255,255,255,0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.cph-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: var(--primary-color);
}

.cph-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.cph-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.cph-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bbb;
}

.cph-list {
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.cph-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.cph-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.cph-table-wrapper {
    overflow-x: auto;
    margin: 4rem 0;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
}

.cph-table-wrapper h2 {
    color: var(--secondary-color) !important;
    margin-bottom: 1rem !important;
}

.cph-table-wrapper p {
    color: #eee !important;
    margin-bottom: 3rem !important;
}

.cph-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.cph-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: left;
    border-bottom: 2px solid var(--primary-color);
}

.cph-table td {
    padding: 1.8rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #eee;
    line-height: 1.8;
    font-size: 1.1rem;
}

.cph-table tr:last-child td {
    border-bottom: none;
}

.cph-table tr:hover {
    background-color: rgba(255,255,255,0.05);
    transition: background-color 0.3s ease;
}

.cph-cta-banner {
    background: linear-gradient(135deg, #1a0a1a 0%, #2d1b2d 100%);
    padding: 8rem 5%;
    text-align: center;
    border-top: 1px solid rgba(241, 196, 15, 0.2);
    border-bottom: 1px solid rgba(241, 196, 15, 0.2);
    margin: 5rem 0;
}

.cph-success-stories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.cph-story-card {
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 30px;
    border-left: 5px solid var(--primary-color);
}

.cph-story-card blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: #eee;
    margin-bottom: 1.5rem;
}

.cph-story-card cite {
    display: block;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 992px) {
    .cph-content-block, .cph-content-block.reverse {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .cph-section {
        padding: 4rem 5%;
    }

    .cph-hero h1 {
        font-size: 2.8rem !important;
    }

    .cph-image-wrapper img {
        height: 350px;
    }

    .cph-text-wrapper h2 {
        font-size: 2.2rem;
    }
    
    .cph-success-stories {
        grid-template-columns: 1fr;
    }
}

.cph-hero p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #eee;
}

.cph-content-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.cph-content-block.reverse {
    flex-direction: row-reverse;
}

.cph-text-wrapper {
    flex: 1;
}

.cph-text-wrapper h2 {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.cph-text-wrapper p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.cph-image-wrapper {
    flex: 1;
}

.cph-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cph-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.cph-card {
    background: rgba(255,255,255,0.03);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(241, 196, 15, 0.1);
    transition: all 0.4s ease;
}

.cph-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: var(--primary-color);
}

.cph-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cph-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* End of Copenhagen Page Styles */

@media (max-width: 992px) {
    .cph-content-block, .cph-content-block.reverse {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .cph-section {
        padding: 4rem 5%;
    }

    .cph-hero h1 {
        font-size: 2.5rem !important;
    }

    .cph-image-wrapper img {
        height: 350px;
    }

    .cph-text-wrapper h2 {
        font-size: 2.2rem;
    }
}

.uk-section {
    padding: 6rem 10%;
    position: relative;
}

.uk-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    background-size: cover;
    background-position: center;
    margin-top: 60px;
}

.uk-container {
    max-width: 1200px;
    margin: 0 auto;
}

.uk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.uk-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(241, 196, 15, 0.1);
    transition: var(--transition);
}

.uk-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.uk-content-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.uk-content-block.reverse {
    flex-direction: row-reverse;
}

.uk-image-wrapper {
    flex: 1;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.uk-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.uk-text-wrapper {
    flex: 1.2;
}

.uk-highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.uk-table-wrapper {
    overflow-x: auto;
    margin: 4rem 0;
    border-radius: 20px;
    background: var(--bg-light);
    padding: 1rem;
}

.uk-table {
    width: 100%;
    border-collapse: collapse;
}

.uk-table th, .uk-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.uk-table th {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.uk-list {
    list-style: none;
    margin-top: 1.5rem;
}

.uk-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.uk-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.uk-cta-banner {
    background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('images/hero-bg1.jpg') center/cover;
    padding: 6rem 5%;
    text-align: center;
    border-radius: 30px;
    margin: 4rem 0;
}

.uk-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.uk-city-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.uk-city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.uk-city-card:hover img {
    transform: scale(1.1);
}

.uk-city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

@media (max-width: 992px) {
    .uk-content-block, .uk-content-block.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    .uk-section {
        padding: 4rem 5%;
    }
    .uk-hero h1 {
        font-size: 2.5rem;
    }
}

/* Aarhus Page Styles */
.arh-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
}

.arh-hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    margin-top: 80px;
}

.arh-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.arh-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.arh-hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.arh-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
    color: #eee;
}

.arh-content-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.arh-content-block.reverse {
    flex-direction: row-reverse;
}

.arh-text-wrapper {
    flex: 1;
}

.arh-text-wrapper h2 {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.arh-text-wrapper p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.arh-image-wrapper {
    flex: 1;
}

.arh-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.arh-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.arh-card {
    background: rgba(255,255,255,0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.arh-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: var(--primary-color);
}

.arh-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.arh-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.arh-list {
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.arh-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.arh-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.arh-table-wrapper {
    overflow-x: auto;
    margin: 4rem 0;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 2rem;
}

.arh-table {
    width: 100%;
    border-collapse: collapse;
}

.arh-table th, .arh-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.arh-table th {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.arh-table td {
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .arh-content-block, .arh-content-block.reverse {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .arh-section {
        padding: 4rem 5%;
    }

    .arh-hero h1 {
        font-size: 2.8rem !important;
    }

    .arh-image-wrapper img {
        height: 350px;
    }

    .arh-text-wrapper h2 {
        font-size: 2.2rem;
    }
}

/* Aarhus Enhanced Styles */
.arh-stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.1) 0%, rgba(0,0,0,0) 100%);
    border-radius: 30px;
    border: 1px solid rgba(241, 196, 15, 0.1);
    text-align: center;
}

.arh-stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.arh-stat-item p {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.arh-quote-block {
    margin: 5rem 0;
    padding: 4rem;
    background: rgba(255,255,255,0.02);
    border-left: 5px solid var(--primary-color);
    border-radius: 0 30px 30px 0;
    position: relative;
}

.arh-quote-block::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: 'Playfair Display', serif;
}

.arh-quote-text {
    font-size: 1.8rem;
    font-style: italic;
    color: #eee;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.arh-quote-author {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.arh-highlight-box {
    background: rgba(241, 196, 15, 0.05);
    padding: 3rem;
    border-radius: 25px;
    border: 1px dashed var(--primary-color);
    margin: 4rem 0;
}

.arh-highlight-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.arh-cta-banner {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../images/aarhus.jpg') center/cover fixed;
    padding: 10rem 5%;
    text-align: center;
    border-radius: 60px;
    margin: 8rem 0;
    border: 1px solid rgba(241, 196, 15, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.arh-cta-banner h2 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
    text-transform: capitalize;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
}

.arh-cta-banner p {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.arh-feature-card {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 25px;
    border-bottom: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.arh-feature-card:hover {
    transform: translateY(-15px);
    border-bottom-color: var(--primary-color);
    background: #222;
}

.arh-feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* Enhanced Table */
.arh-table {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.arh-table thead tr {
    background: rgba(241, 196, 15, 0.1);
}

.arh-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

@media (max-width: 768px) {
    .arh-stats-container {
        padding: 2rem;
    }
    
    .arh-quote-block {
        padding: 2.5rem;
    }
    
    .arh-quote-text {
        font-size: 1.4rem;
    }
    
    .arh-cta-banner h2 {
        font-size: 2.5rem;
    }
}

/* Odense Page Styles */
.ode-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
}

.ode-hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    margin-top: 80px;
}

.ode-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

.ode-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.ode-hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.ode-hero p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #eee;
    margin-bottom: 2.5rem;
}

.ode-content-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.ode-content-block.reverse {
    flex-direction: row-reverse;
}

.ode-text-wrapper {
    flex: 1.2;
}

.ode-text-wrapper h2 {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.ode-text-wrapper p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.ode-image-wrapper {
    flex: 1;
}

.ode-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.ode-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.ode-stat-card {
    background: rgba(255,255,255,0.03);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

.ode-stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.ode-stat-card h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.ode-list {
    list-style: none;
    margin: 2rem 0;
}

.ode-list li {
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.ode-list li::before {
    content: '👑';
    position: absolute;
    left: 0;
    top: 0;
}

.ode-table-container {
    overflow-x: auto;
    margin: 4rem 0;
    background: rgba(255,255,255,0.02);
    border-radius: 25px;
    padding: 2.5rem;
}

.ode-table {
    width: 100%;
    border-collapse: collapse;
}

.ode-table th, .ode-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ode-table th {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

.ode-quote {
    padding: 4rem;
    background: linear-gradient(to right, rgba(241, 196, 15, 0.05), transparent);
    border-left: 4px solid var(--primary-color);
    margin: 5rem 0;
    border-radius: 0 30px 30px 0;
}

.ode-quote p {
    font-size: 1.6rem;
    font-style: italic;
    color: #eee;
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
}

.ode-cta-box {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/odense.jpg') center/cover;
    padding: 8rem 5%;
    text-align: center;
    border-radius: 40px;
    margin: 6rem 0;
}

.ode-cta-box h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.ode-cta-box p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
}

@media (max-width: 992px) {
    .ode-content-block, .ode-content-block.reverse {
        flex-direction: column;
        gap: 3rem;
    }
    
    .ode-hero h1 {
        font-size: 3rem;
    }
    
    .ode-text-wrapper h2 {
        font-size: 2.2rem;
    }
    
    .ode-image-wrapper img {
        height: 350px;
    }
}

/* London Page Styles */
.lon-section {
    padding: 6rem 10%;
    position: relative;
}

.lon-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    background-size: cover;
    background-position: center;
    margin-top: 60px;
}

.lon-container {
    max-width: 1200px;
    margin: 0 auto;
}

.lon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.lon-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(241, 196, 15, 0.1);
    transition: var(--transition);
}

.lon-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.lon-content-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.lon-content-block.reverse {
    flex-direction: row-reverse;
}

.lon-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.lon-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.lon-text-wrapper {
    flex: 1.2;
}

.lon-highlight {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
}

.lon-table-wrapper {
    overflow-x: auto;
    margin: 3rem 0;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 1.5rem;
}

.lon-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.lon-table th, .lon-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lon-table th {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.lon-list {
    list-style: none;
    margin-top: 2rem;
}

.lon-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.lon-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.lon-cta-banner {
    background: linear-gradient(135deg, #1a0a1a 0%, #2d1b2d 100%);
    padding: 8rem 5%;
    text-align: center;
    border-top: 1px solid rgba(241, 196, 15, 0.2);
}

@media (max-width: 992px) {
    .lon-content-block, .lon-content-block.reverse {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .lon-section {
        padding: 4rem 5%;
    }

    .lon-hero h1 {
        font-size: 2.5rem !important;
    }
}

/* Birmingham Page Styles */
.bir-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.bir-section {
    padding: 6rem 10%;
    position: relative;
}

.bir-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    background-size: cover;
    background-position: center;
    margin-top: 60px;
}

.bir-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.2;
}

.bir-content-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.bir-content-block.reverse {
    flex-direction: row-reverse;
}

.bir-text-wrapper {
    flex: 1;
}

.bir-text-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.bir-text-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.bir-image-wrapper {
    flex: 1;
    position: relative;
}

.bir-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.bir-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.bir-card {
    background: rgba(255,255,255,0.03);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.1);
    transition: all 0.3s ease;
}

.bir-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: var(--primary-color);
}

.bir-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.bir-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.bir-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.bir-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.bir-table-wrapper {
    overflow-x: auto;
    margin: 4rem 0;
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    padding: 2rem;
}

.bir-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.bir-table th, .bir-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.bir-table th {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.bir-table td {
    color: var(--text-muted);
}

.bir-highlight {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border 0.3s ease;
}

.bir-highlight:hover {
    border-bottom-color: var(--primary-color);
}

.bir-cta-banner {
    background: linear-gradient(135deg, #1a0a1a 0%, #2d1b2d 100%);
    padding: 8rem 5%;
    text-align: center;
    border-top: 1px solid rgba(241, 196, 15, 0.2);
}

@media (max-width: 992px) {
    .bir-content-block, .bir-content-block.reverse {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .bir-section {
        padding: 4rem 5%;
    }

    .bir-hero h1 {
        font-size: 2.5rem !important;
    }

    .bir-image-wrapper img {
        height: 300px;
    }
}

/* Glasgow Page Styles */
.gla-section {
    padding: 6rem 10%;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow: hidden;
}

.gla-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gla-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 5%;
}

.gla-hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gla-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.gla-content-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.gla-content-block.reverse {
    flex-direction: row-reverse;
}

.gla-text-wrapper {
    flex: 1;
}

.gla-text-wrapper h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.gla-text-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.gla-image-wrapper {
    flex: 1;
    position: relative;
}

.gla-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.gla-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.gla-card {
    background: rgba(255,255,255,0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.gla-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: var(--primary-color);
}

.gla-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.gla-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bbb;
}

.gla-list {
    list-style: none;
    margin-top: 1.5rem;
}

.gla-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.gla-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.gla-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 2rem;
}

.gla-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.gla-table th, .gla-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.gla-table th {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.gla-table td {
    color: var(--text-muted);
}

.gla-highlight {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border 0.3s ease;
}

.gla-highlight:hover {
    border-bottom-color: var(--primary-color);
}

.gla-cta-banner {
    background: linear-gradient(135deg, #1a0a1a 0%, #2d1b2d 100%);
    padding: 8rem 5%;
    text-align: center;
    border-top: 1px solid rgba(241, 196, 15, 0.2);
}

@media (max-width: 992px) {
    .gla-content-block, .gla-content-block.reverse {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .gla-section {
        padding: 4rem 5%;
    }

    .gla-hero h1 {
        font-size: 2.5rem !important;
    }

    .gla-image-wrapper img {
        height: 300px;
    }
}

/* Liverpool Page Styles */
.liv-section {
    padding: 6rem 10%;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow: hidden;
}

.liv-container {
    max-width: 1200px;
    margin: 0 auto;
}

.liv-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 5%;
}

.liv-hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.liv-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.liv-content-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.liv-content-block.reverse {
    flex-direction: row-reverse;
}

.liv-text-wrapper {
    flex: 1;
}

.liv-text-wrapper h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.liv-text-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.liv-image-wrapper {
    flex: 1;
    position: relative;
}

.liv-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.liv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.liv-card {
    background: rgba(255,255,255,0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.liv-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: var(--primary-color);
}

.liv-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.liv-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bbb;
}

.liv-list {
    list-style: none;
    margin-top: 1.5rem;
}

.liv-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.liv-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.liv-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 2rem;
}

.liv-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.liv-table th, .liv-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.liv-table th {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.liv-table td {
    color: var(--text-muted);
}

.liv-highlight {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border 0.3s ease;
}

.liv-highlight:hover {
    border-bottom-color: var(--primary-color);
}

.liv-cta-banner {
    background: linear-gradient(135deg, #1a0a1a 0%, #2d1b2d 100%);
    padding: 8rem 5%;
    text-align: center;
    border-top: 1px solid rgba(241, 196, 15, 0.2);
}

@media (max-width: 992px) {
    .liv-content-block, .liv-content-block.reverse {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .liv-section {
        padding: 4rem 5%;
    }

    .liv-hero h1 {
        font-size: 2.5rem !important;
    }

    .liv-image-wrapper img {
        height: 300px;
    }
}

/* Manchester Page Styles */
.man-section {
    padding: 6rem 10%;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow: hidden;
}

.man-container {
    max-width: 1400px;
    margin: 0 auto;
}

.man-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
}

.man-hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.man-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.man-content-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.man-content-block.reverse {
    flex-direction: row-reverse;
}

.man-text-wrapper {
    flex: 1;
}

.man-text-wrapper h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.man-text-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.man-image-wrapper {
    flex: 1;
    position: relative;
}

.man-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.man-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.man-card {
    background: rgba(255,255,255,0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}

.man-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: var(--primary-color);
}

.man-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.man-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bbb;
}

.man-list {
    list-style: none;
    margin-top: 1.5rem;
}

.man-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.man-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.man-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 2rem;
}

.man-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.man-table th, .man-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.man-table th {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.man-table td {
    color: var(--text-muted);
}

.man-highlight {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border 0.3s ease;
}

.man-highlight:hover {
    border-bottom-color: var(--primary-color);
}

.man-cta-banner {
    background: linear-gradient(135deg, #1a0a1a 0%, #2d1b2d 100%);
    padding: 8rem 5%;
    text-align: center;
    border-top: 1px solid rgba(241, 196, 15, 0.2);
}

@media (max-width: 992px) {
    .man-content-block, .man-content-block.reverse {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .man-section {
        padding: 4rem 5%;
    }

    .man-hero h1 {
        font-size: 2.5rem !important;
    }

    .man-image-wrapper img {
        height: 300px;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Aalborg Page Styles */
.aal-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
}

.aal-hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    margin-top: 80px;
}

.aal-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

.aal-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.aal-hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.aal-hero p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #eee;
    margin-bottom: 2.5rem;
}

.aal-content-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.aal-content-block.reverse {
    flex-direction: row-reverse;
}

.aal-text-wrapper {
    flex: 1.2;
}

.aal-text-wrapper h2 {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.aal-text-wrapper p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.aal-image-wrapper {
    flex: 1;
}

.aal-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.aal-quote {
    background: rgba(241, 196, 15, 0.05);
    padding: 5rem;
    border-radius: 40px;
    text-align: center;
    margin: 8rem 0;
    border: 1px solid rgba(241, 196, 15, 0.1);
    position: relative;
}

.aal-quote p {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #fff;
    line-height: 1.6;
}

.aal-places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 6rem 0;
}

.aal-place-card {
    background: rgba(255,255,255,0.03);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.aal-place-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.05);
}

.aal-place-card h3 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.aal-place-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.aal-list {
    list-style: none;
    margin: 2rem 0;
}

.aal-list li {
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.aal-list li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    top: 0;
}

.aal-table-container {
    overflow-x: auto;
    margin: 6rem 0;
    background: rgba(255,255,255,0.02);
    border-radius: 25px;
    padding: 3rem;
}

.aal-table {
    width: 100%;
    border-collapse: collapse;
}

.aal-table th, .aal-table td {
    padding: 2rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.aal-table th {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
}

.aal-table td {
    color: var(--text-muted);
}

.aal-cta-banner {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../images/dk2.jpg') center/cover fixed;
    padding: 10rem 5%;
    text-align: center;
    border-radius: 60px;
    margin: 8rem 0;
    border: 1px solid rgba(241, 196, 15, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.aal-cta-banner h2 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
}

.aal-cta-banner p {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
}

@media (max-width: 992px) {
    .aal-content-block, .aal-content-block.reverse {
        flex-direction: column;
        gap: 3rem;
    }
    .aal-image-wrapper img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .aal-hero h1 {
        font-size: 2.5rem;
    }
    .aal-hero p {
        font-size: 1.1rem;
    }
    .aal-text-wrapper h2 {
        font-size: 2.2rem;
    }
    .aal-quote {
        padding: 3rem;
    }
    .aal-quote p {
        font-size: 1.5rem;
    }
    .aal-cta-banner h2 {
        font-size: 2.5rem;
    }
    .aal-places-grid {
        grid-template-columns: 1fr;
    }
}

/* Esbjerg Page Styles */
.esb-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
}

.esb-hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    margin-top: 80px;
}

.esb-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}

.esb-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.esb-hero h1 {
    font-size: 4.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.esb-hero p {
    font-size: 1.4rem;
    line-height: 1.9;
    color: #f0f0f0;
    margin-bottom: 3rem;
    font-weight: 300;
}

.esb-content-block {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 10rem;
}

.esb-content-block.reverse {
    flex-direction: row-reverse;
}

.esb-text-wrapper {
    flex: 1.3;
}

.esb-text-wrapper h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.esb-text-wrapper p {
    margin-bottom: 1.8rem;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #d1d1d1;
}

.esb-image-wrapper {
    flex: 1;
}

.esb-image-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.esb-highlight-box {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.1) 0%, rgba(241, 196, 15, 0.02) 100%);
    padding: 4rem;
    border-radius: 35px;
    margin: 8rem 0;
    border-left: 5px solid var(--primary-color);
}

.esb-highlight-box h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.esb-bar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 5rem 0;
}

.esb-bar-card {
    background: #1f1f1f;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.esb-bar-card:hover {
    transform: translateY(-15px);
    background: #252525;
    border-color: var(--primary-color);
}

.esb-bar-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.esb-list {
    list-style: none;
    margin: 2.5rem 0;
}

.esb-list li {
    padding-left: 3rem;
    position: relative;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.esb-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.esb-table-wrapper {
    margin: 8rem 0;
    background: #1a1a1a;
    padding: 4rem;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow-x: auto;
}

.esb-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.esb-table th {
    text-align: left;
    padding: 2rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    border-bottom: 2px solid rgba(241, 196, 15, 0.3);
}

.esb-table td {
    padding: 2rem;
    color: #bdbdbd;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 1.1rem;
}

.esb-cta-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/dk3.jpg') center/cover fixed;
    padding: 12rem 5%;
    text-align: center;
    border-radius: 50px;
    margin: 10rem 0;
}

.esb-cta-section h2 {
    font-size: 4.5rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2.5rem;
}

@media (max-width: 1200px) {
    .esb-hero h1 { font-size: 3.5rem; }
    .esb-content-block { gap: 3rem; }
}

@media (max-width: 992px) {
    .esb-content-block, .esb-content-block.reverse {
        flex-direction: column;
        text-align: center;
    }
    .esb-image-wrapper img { height: 450px; }
    .esb-list li { text-align: left; }
}

/* Finland Page Styles */
.fin-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
}

.fin-hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    margin-top: 80px;
}

.fin-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.fin-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.fin-hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.fin-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.fin-content-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.fin-content-block.reverse {
    flex-direction: row-reverse;
}

.fin-text-wrapper {
    flex: 1;
}

.fin-text-wrapper h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.fin-text-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.fin-image-wrapper {
    flex: 1;
    position: relative;
}

.fin-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.fin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.fin-card {
    background: rgba(255,255,255,0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.fin-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: var(--primary-color);
}

.fin-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.fin-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.fin-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bbb;
}

.fin-list {
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.fin-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.fin-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.fin-table-wrapper {
    overflow-x: auto;
    margin: 4rem 0;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 2rem;
}

.fin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.fin-table th, .fin-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fin-table th {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.fin-table td {
    color: var(--text-muted);
}

.fin-cta-banner {
    background: linear-gradient(135deg, #1a0a1a 0%, #2d1b2d 100%);
    padding: 8rem 5%;
    text-align: center;
    border-radius: 30px;
    margin: 4rem 0;
}

.fin-success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 5rem 0;
}

.fin-story-card {
    background: #1f1f1f;
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.fin-story-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.fin-story-card cite {
    display: block;
    color: var(--primary-color);
    font-weight: bold;
    font-style: normal;
}

@media (max-width: 992px) {
    .fin-hero h1 { font-size: 3rem; }
    .fin-content-block, .fin-content-block.reverse {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .fin-image-wrapper img { height: 350px; }
    .fin-list li { text-align: left; }
}


/* Helsinki Page Styles */
.hel-section {
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
}

.hel-hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    margin-top: 80px;
}

.hel-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.hel-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hel-hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hel-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.hel-content-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.hel-content-block.reverse {
    flex-direction: row-reverse;
}

.hel-text-wrapper {
    flex: 1;
}

.hel-text-wrapper h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hel-text-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hel-image-wrapper {
    flex: 1;
    position: relative;
}

.hel-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.hel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.hel-card {
    background: rgba(255,255,255,0.03);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.hel-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: var(--primary-color);
}

.hel-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.hel-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.hel-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.hel-list {
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.hel-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.hel-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.hel-table-wrapper {
    overflow-x: auto;
    margin: 1rem 0;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 2rem;
}

.hel-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.hel-table th, .hel-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hel-table th {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.hel-table td {
    color: var(--text-color);
}

.hel-cta-banner {
    background: linear-gradient(135deg, #1a0a1a 0%, #2d1b2d 100%);
    padding: 4rem 5%;
    text-align: center;
    border-radius: 30px;
    margin: 1rem 0;
}

.hel-cta-banner p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hel-success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 2rem 0;
}

.hel-story-card {
    background: #1f1f1f;
    padding: 2rem;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.hel-story-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hel-story-card cite {
    display: block;
    color: var(--primary-color);
    font-weight: bold;
    font-style: normal;
}

@media (max-width: 992px) {
    .hel-hero h1 { font-size: 3rem; }
    .hel-content-block, .hel-content-block.reverse {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .hel-image-wrapper img { height: 350px; }
    .hel-list li { text-align: left; }
}

@media (max-width: 768px) {
    .hel-hero { height: 65vh; margin-top: 60px; }
    .hel-hero h1 { font-size: 2.5rem; }
    .hel-text-wrapper h2 { font-size: 2rem; }
    .hel-cta-banner { padding: 5rem 5%; }
    .hel-cta-banner h2 { font-size: 2.2rem; }
}

/* Espoo Page Styles */
.es-section {
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
}

.es-hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    margin-top: 80px;
}

.es-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.es-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.es-hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.es-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.es-content-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.es-content-block.reverse {
    flex-direction: row-reverse;
}

.es-text-wrapper {
    flex: 1;
}

.es-text-wrapper h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.es-text-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.es-image-wrapper {
    flex: 1;
    position: relative;
}

.es-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.es-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.es-card {
    background: rgba(255,255,255,0.03);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.es-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: var(--primary-color);
}

.es-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.es-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.es-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.es-list {
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.es-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.es-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.es-table-wrapper {
    overflow-x: auto;
    margin: 1rem 0;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 2rem;
}

.es-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.es-table th, .es-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.es-table th {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.es-table td {
    color: var(--text-color);
}

.es-cta-banner {
    background: linear-gradient(135deg, #1a0a1a 0%, #2d1b2d 100%);
    padding: 4rem 5%;
    text-align: center;
    border-radius: 30px;
    margin: 1rem 0;
}

.es-success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 2rem 0;
}

.es-story-card {
    background: #1f1f1f;
    padding: 2rem;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.es-story-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.es-story-card cite {
    display: block;
    color: var(--primary-color);
    font-weight: bold;
    font-style: normal;
}

@media (max-width: 992px) {
    .es-hero h1 { font-size: 3rem; }
    .es-content-block, .es-content-block.reverse {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .es-image-wrapper img { height: 350px; }
    .es-list li { text-align: left; }
}

@media (max-width: 768px) {
    .es-hero { height: 65vh; margin-top: 60px; }
    .es-hero h1 { font-size: 2.5rem; }
    .es-text-wrapper h2 { font-size: 2rem; }
    .es-cta-banner { padding: 5rem 5%; }
    .es-cta-banner h2 { font-size: 2.2rem; }
}

/* Tampere Page Styles */
.tam-section {
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.tam-hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.tam-hero-content {
    max-width: 900px;
}

.tam-hero h1 {
    font-size: 4.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.tam-hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.tam-content-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.tam-content-block.reverse {
    flex-direction: row-reverse;
}

.tam-image-wrapper {
    flex: 1;
    position: relative;
}

.tam-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tam-text-wrapper {
    flex: 1;
}

.tam-text-wrapper h2 {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tam-text-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.tam-list {
    list-style: none;
    margin-top: 2rem;
}

.tam-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.tam-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.tam-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.tam-grid-card {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    color: #333; /* Ensure dark text on white card */
}

.tam-grid-card:hover {
    transform: translateY(-10px);
}

.tam-grid-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

.tam-grid-card p {
    color: #555; /* Slightly lighter than heading */
    line-height: 1.7;
}

.tam-cta-banner {
    background: var(--secondary-color);
    color: white;
    padding: 2rem 5%;
    text-align: center;
    border-radius: 20px;
    margin: 1rem 5%;
}

.tam-cta-banner h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
}

.tam-cta-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.tam-faq-container {
    max-width: 900px;
    margin: 2rem auto;
}

.tam-faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.tam-faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tam-faq-answer {
    margin-top: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    display: none;
}

.tam-faq-item.active .tam-faq-answer {
    display: block;
}

.tam-faq-item.active .tam-faq-question span::after {
    content: "-";
}

.tam-faq-question span::after {
    content: "+";
}

@media (max-width: 992px) {
    .tam-hero h1 { font-size: 3.5rem; }
    .tam-content-block, .tam-content-block.reverse {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .tam-image-wrapper img { height: 350px; }
    .tam-list li { text-align: left; }
}

/* Vantaa Page Styles */
.van-section {
    padding: 2rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.van-hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.van-hero-content {
    max-width: 900px;
}

.van-hero h1 {
    font-size: 4.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.van-hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.van-content-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.van-content-block.reverse {
    flex-direction: row-reverse;
}

.van-image-wrapper {
    flex: 1;
    position: relative;
}

.van-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.van-text-wrapper {
    flex: 1;
}

.van-text-wrapper h2 {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.van-text-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.van-list {
    list-style: none;
    margin-top: 2rem;
}

.van-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #eee;
}

.van-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.van-table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.van-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.05);
}

.van-table th, .van-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-color);
}

.van-table th {
    background: rgba(241, 196, 15, 0.1);
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.van-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.van-grid-card {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--text-color);
}

.van-grid-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: var(--primary-color);
}

.van-grid-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.van-cta-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #4a1428 100%);
    color: white;
    padding: 4rem 5%;
    text-align: center;
    border-radius: 20px;
    margin: 2rem 0;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.van-cta-banner h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
}

.van-cta-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.van-faq-container {
    max-width: 900px;
    margin: 4rem auto;
}

.van-faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1.5rem;
}

.van-faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.van-faq-answer {
    margin-top: 1rem;
    line-height: 1.7;
    color: #eee;
    display: none;
}

.van-faq-item.active .van-faq-answer {
    display: block;
}

.van-faq-question span::after {
    content: "+";
}

.van-faq-item.active .van-faq-question span::after {
    content: "-";
}

/* Norway (no.html) styles */
.nor-hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/no1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
}

.nor-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.nor-hero-content p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.nor-section {
    padding: 8rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.nor-content-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 10rem;
}

.nor-content-block.reverse {
    flex-direction: row-reverse;
}

.nor-text-wrapper {
    flex: 1;
}

.nor-text-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

.nor-text-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #eee;
}

.nor-image-wrapper {
    flex: 1;
}

.nor-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.nor-list {
    list-style: none;
    margin: 2rem 0;
}

.nor-list li {
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #eee;
}

.nor-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.nor-table-container {
    overflow-x: auto;
    margin: 4rem 0;
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 20px;
}

.nor-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.nor-table th, .nor-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nor-table th {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

.nor-table td {
    color: #eee;
}

.nor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.nor-card {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.nor-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.nor-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.nor-card p {
    color: #eee;
    line-height: 1.7;
}

.nor-cta-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3d1424 100%);
    padding: 6rem 5%;
    text-align: center;
    border-radius: 30px;
    margin: 6rem 0;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.nor-cta-banner h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.nor-cta-banner p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #eee;
}

@media (max-width: 992px) {
    .nor-content-block, .nor-content-block.reverse {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .nor-image-wrapper img {
        height: 350px;
    }
    .nor-hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nor-section {
        padding: 5rem 5%;
    }
    .nor-hero-content h1 {
        font-size: 2.5rem;
    }
    .nor-text-wrapper h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .van-hero h1 { font-size: 3.5rem; }
    .van-content-block, .van-content-block.reverse {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .van-image-wrapper img { height: 350px; }
    .van-list li { text-align: left; }
}

@media (max-width: 768px) {
    .van-hero { height: 65vh; margin-top: 60px; }
    .van-hero h1 { font-size: 2.5rem; }
    .van-text-wrapper h2 { font-size: 2rem; }
    .van-cta-banner { padding: 5rem 5%; }
    .van-cta-banner h2 { font-size: 2.2rem; }
}

/* UK Page Specific Styles - Isolated with .ukp- prefix */
.ukp-section {
    padding: 6rem 10%;
    position: relative;
}

.ukp-section:nth-child(even) {
    background-color: var(--bg-light);
}

.ukp-hero {
    padding: 12rem 10% 8rem;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/UK.jpg') center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.ukp-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: var(--font-main);
}

.ukp-hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 850px;
    margin: 0 auto 2.5rem;
}

.ukp-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ukp-content-block {
    display: flex;
    gap: 5rem;
    align-items: center;
    margin-bottom: 7rem;
}

.ukp-content-block.reverse {
    flex-direction: row-reverse;
}

.ukp-text {
    flex: 1.2;
}

.ukp-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.8rem;
    font-family: var(--font-main);
}

.ukp-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.ukp-image-wrapper {
    flex: 0.8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.ukp-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ukp-image-wrapper:hover img {
    transform: scale(1.05);
}

.ukp-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.ukp-city-card {
    display: block;
    text-decoration: none;
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 1px solid rgba(241, 196, 15, 0.1);
    transition: transform 0.3s ease;
}

.ukp-city-card:hover {
    transform: translateY(-10px);
}

.ukp-city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: 0.5s ease;
}

.ukp-city-card:hover img {
    filter: brightness(0.75) scale(1.1);
}

.ukp-city-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.98));
}

.ukp-city-info h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ukp-city-info p {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.6;
}

.ukp-table-wrapper {
    overflow-x: auto;
    margin: 5rem 0;
    border-radius: 20px;
    border: 1px solid rgba(241, 196, 15, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.ukp-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-light);
}

.ukp-table th, .ukp-table td {
    padding: 2rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ukp-table th {
    background-color: rgba(241, 196, 15, 0.2);
    color: var(--primary-color);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ukp-list {
    margin: 2rem 0;
}

.ukp-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.ukp-list li svg {
    flex-shrink: 0;
    margin-top: 5px;
    color: var(--primary-color);
}

.ukp-cta-banner {
    background: linear-gradient(135deg, rgba(26, 10, 26, 0.95), rgba(52, 12, 28, 0.95)), url('images/hero-bg.jpg') center/cover;
    padding: 6rem 4rem;
    border-radius: 30px;
    text-align: center;
    border: 2px solid var(--primary-color);
    margin: 6rem 0;
    box-shadow: 0 25px 60px rgba(241, 196, 15, 0.15);
}

.ukp-cta-banner h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.ukp-cta-banner p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ukp-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 1200px) {
    .ukp-content-block { gap: 3rem; }
}

@media (max-width: 992px) {
    .ukp-content-block, .ukp-content-block.reverse {
        flex-direction: column;
        gap: 3.5rem;
    }
    
    .ukp-section {
        padding: 5rem 5%;
    }
    
    .ukp-image-wrapper { width: 100%; }
    
    .ukp-image-wrapper img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .ukp-hero { height: auto; padding: 10rem 5% 6rem; }
    .ukp-hero h1 { font-size: 2.8rem; }
    .ukp-text h2 { font-size: 2.2rem; }
    .ukp-cta-banner { padding: 4rem 1.5rem; }
    .ukp-cta-banner h2 { font-size: 2.4rem; }
    .ukp-cta-banner p { font-size: 1.1rem; }
}

/* Manchester Page Specific Styles */
.mcr-hero {
    padding: 12rem 10% 8rem;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/UK.jpg') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mcr-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-main);
    line-height: 1.1;
}

.mcr-hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 3rem;
}

.mcr-section {
    padding: 8rem 10%;
}

.mcr-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.mcr-content-block.reverse {
    direction: rtl;
}

.mcr-content-block.reverse .mcr-text {
    direction: ltr;
}

.mcr-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.mcr-text p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.mcr-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.mcr-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.mcr-card {
    background: var(--bg-dark);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.15);
    transition: var(--transition);
    height: 100%;
}

.mcr-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-12px);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.1);
}

.mcr-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.mcr-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.mcr-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.mcr-table-container {
    overflow-x: auto;
    margin: 4rem 0;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.mcr-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-dark);
}

.mcr-table th, .mcr-table td {
    padding: 1.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mcr-table th {
    background: rgba(241, 196, 15, 0.15);
    color: var(--primary-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mcr-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.mcr-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.mcr-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.mcr-cta-box {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('images/hero-bg1.jpg') center/cover;
    border-radius: 25px;
    margin: 4rem 0;
    border: 2px solid var(--primary-color);
}

.mcr-cta-box h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .mcr-content-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .mcr-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .mcr-hero {
        padding: 10rem 5% 6rem;
    }
    .mcr-section {
        padding: 6rem 5%;
    }
}

@media (max-width: 768px) {
    .mcr-grid-3 {
        grid-template-columns: 1fr;
    }
    .mcr-hero h1 {
        font-size: 2.8rem;
    }
    .mcr-text h2 {
        font-size: 2.2rem;
    }
    .mcr-cta-box h2 {
        font-size: 2.4rem;
    }
    .mcr-image-wrapper img {
        height: 350px;
    }
}

/* Glasgow Page Styles */
.glw-hero {
    padding: 12rem 10% 8rem;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('../images/hero-bg1.jpg') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.glw-hero-content {
    max-width: 900px;
}

.glw-hero h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.glw-hero p {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.glw-section {
    padding: 6rem 10%;
}

.glw-section:nth-child(even) {
    background-color: var(--bg-light);
}

.glw-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.glw-content-block.reverse {
    direction: rtl;
}

.glw-content-block.reverse .glw-text {
    direction: ltr;
}

.glw-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.glw-text p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.glw-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 1px solid rgba(241, 196, 15, 0.3);
    transition: var(--transition);
}

.glw-image-wrapper img:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
}

.glw-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.glw-card {
    background: var(--bg-dark);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.15);
    transition: var(--transition);
    height: 100%;
}

.glw-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-12px);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.1);
}

.glw-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.glw-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.glw-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.glw-table-container {
    overflow-x: auto;
    margin: 4rem 0;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.glw-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-dark);
}

.glw-table th, .glw-table td {
    padding: 1.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.glw-table th {
    background: rgba(241, 196, 15, 0.15);
    color: var(--primary-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glw-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.glw-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.glw-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.glw-cta-box {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('../images/hero-bg.jpg') center/cover;
    border-radius: 25px;
    margin: 6rem 0;
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 50px rgba(241, 196, 15, 0.15);
}

.glw-cta-box h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .glw-content-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .glw-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .glw-hero {
        padding: 10rem 5% 6rem;
    }
}

@media (max-width: 768px) {
    .glw-hero h1 {
        font-size: 2.8rem;
    }
    .glw-grid-3 {
        grid-template-columns: 1fr;
    }
    .glw-text h2 {
        font-size: 2.2rem;
    }
    .glw-image-wrapper img {
        height: 350px;
    }
}

/* Copenhagen (CPH) Page Styles */
.cph-hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    margin-top: 80px;
}

.cph-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.cph-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.cph-hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cph-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
    color: #eee;
}

.cph-section {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.cph-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
    margin-bottom: 10rem;
}

.cph-content-block.reverse {
    direction: rtl;
}

.cph-content-block.reverse .cph-text-wrapper {
    direction: ltr;
}

.cph-text-wrapper h2 {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.cph-text-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.cph-text-wrapper p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #eee;
    margin-bottom: 1.5rem;
}

.cph-image-wrapper {
    position: relative;
}

.cph-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.cph-image-wrapper:hover img {
    transform: scale(1.02);
}

.cph-cta-banner {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../images/copenhagen.jpg') center/cover fixed;
    padding: 4rem 5%;
    text-align: center;
    border-radius: 40px;
    margin: 4rem 0;
    border: 1px solid rgba(241, 196, 15, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.cph-cta-banner h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.cph-cta-banner p {
    font-size: 1.4rem;
    color: #eee;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cph-table-wrapper {
    margin: 4rem 0;
    background: rgba(255,255,255,0.03);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.cph-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.cph-table th, .cph-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cph-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    padding: 1.8rem 1.5rem;
}

.cph-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #eee;
    line-height: 1.6;
}

.cph-table tr:hover {
    background-color: rgba(255,255,255,0.05);
}

.cph-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 3rem 0;
}

.cph-card {
    background: rgba(255,255,255,0.03);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.cph-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-color: var(--primary-color);
}

.cph-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.cph-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #bbb;
}

.cph-highlight {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
}

.cph-highlight:hover {
    background: rgba(241, 196, 15, 0.1);
}

@media (max-width: 1100px) {
    .cph-content-block {
        gap: 3rem;
    }
    .cph-hero h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    .cph-content-block {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .cph-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cph-section {
        padding: 5rem 5%;
    }
    .cph-hero h1 {
        font-size: 2.5rem;
    }
    .cph-hero p {
        font-size: 1.1rem;
    }
    .cph-grid-3 {
        grid-template-columns: 1fr;
    }
    .cph-table-wrapper {
        padding: 2rem;
        overflow-x: auto;
    }
    .cph-text-wrapper h2 {
        font-size: 2.2rem;
    }
    .cph-cta-banner h2 {
        font-size: 2.4rem;
    }
}

/* Bergen Page Styles */
.brg-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.brg-hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    margin-top: 80px;
}

.brg-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.brg-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.brg-hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.brg-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

.brg-content-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.brg-content-block.reverse {
    flex-direction: row-reverse;
}

.brg-text-wrapper {
    flex: 1.2;
}

.brg-text-wrapper h2 {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.brg-text-wrapper p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.brg-image-wrapper {
    flex: 1;
}

.brg-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.brg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.brg-card {
    background: rgba(255,255,255,0.03);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(241, 196, 15, 0.1);
    transition: all 0.4s ease;
}

.brg-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.05);
}

.brg-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.brg-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.brg-table-wrapper {
    overflow-x: auto;
    margin: 5rem 0;
    padding: 3rem;
    background: #1a0a1a;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.3);
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.brg-table-wrapper h2 {
    color: #fff !important;
}

.brg-table {
    width: 100%;
    border-collapse: collapse;
}

.brg-table th, .brg-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.brg-table th {
    background-color: rgba(241, 196, 15, 0.1);
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.brg-table td {
    color: #eee;
    line-height: 1.6;
}

.brg-cta-banner {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('images/blurmale1.jpg') center/cover fixed;
    padding: 10rem 5%;
    text-align: center;
    border-radius: 60px;
    margin: 8rem 0;
    border: 1px solid rgba(241, 196, 15, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.brg-cta-banner h2 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.brg-cta-banner p {
    font-size: 1.4rem;
    color: #eee;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.brg-list {
    list-style: none;
    margin-top: 1.5rem;
}

.brg-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.brg-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .brg-content-block, .brg-content-block.reverse {
        flex-direction: column;
        gap: 3rem;
    }
    .brg-hero h1 { font-size: 2.8rem !important; }
    .brg-text-wrapper h2 { font-size: 2.2rem; }
    .brg-image-wrapper img { height: 350px; }
}

/* Stavanger Page Styles (.sta-) */
.sta-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 5%;
}

.sta-hero-content {
    max-width: 900px;
}

.sta-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.sta-hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.sta-section {
    padding: 5rem 10%;
    background-color: var(--bg-dark);
}

.sta-content-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 5rem;
}

.sta-content-block.reverse {
    flex-direction: row-reverse;
}

.sta-text-wrapper {
    flex: 1;
}

.sta-text-wrapper h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.sta-text-wrapper p {
    font-size: 1.15rem;
    color: #eee;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.sta-image-wrapper {
    flex: 1;
}

.sta-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(241, 196, 15, 0.1);
}

.sta-table-wrapper {
    margin: 6rem 0;
    overflow-x: auto;
}

.sta-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(44, 26, 44, 0.5);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.sta-table th {
    background-color: #1a0a1a;
    color: var(--primary-color);
    padding: 2rem;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--primary-color);
}

.sta-table td {
    padding: 1.8rem 2rem;
    border-bottom: 1px solid rgba(241, 196, 15, 0.1);
    color: #eee;
    font-size: 1.1rem;
}

.sta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.sta-card {
    background: var(--bg-light);
    padding: 3.5rem 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(241, 196, 15, 0.1);
    transition: var(--transition);
    text-align: center;
}

.sta-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.sta-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.sta-card p {
    color: #eee;
    line-height: 1.7;
}

.sta-list {
    list-style: none;
    margin-top: 1.5rem;
}

.sta-list li {
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: #eee;
}

.sta-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.sta-cta-banner {
    background: linear-gradient(rgba(26, 10, 26, 0.85), rgba(26, 10, 26, 0.85)), url('images/hero-bg1.jpg') center/cover fixed;
    padding: 8rem 10%;
    text-align: center;
    border-radius: 50px;
    margin: 8rem 0;
    border: 1px solid rgba(241, 196, 15, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.sta-cta-banner h2 {
    font-size: 3.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.sta-cta-banner p {
    font-size: 1.4rem;
    color: #fff;
    max-width: 850px;
    margin: 0 auto 3rem;
}

@media (max-width: 992px) {
    .sta-hero h1 { font-size: 3rem; }
    .sta-hero p { font-size: 1.2rem; }
    .sta-content-block, .sta-content-block.reverse {
        flex-direction: column;
        gap: 3rem;
    }
    .sta-section { padding: 4rem 5%; }
    .sta-text-wrapper h2 { font-size: 2.2rem; }
    .sta-image-wrapper img { height: 350px; }
    .sta-cta-banner h2 { font-size: 2.8rem; }
}

/* Trondheim Page Styles (.tro-) */
.tro-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 5%;
}

.tro-hero-content {
    max-width: 900px;
}

.tro-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.tro-hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.tro-section {
    padding: 5rem 10%;
    background-color: var(--bg-dark);
}

.tro-content-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 5rem;
}

.tro-content-block.reverse {
    flex-direction: row-reverse;
}

.tro-text-wrapper {
    flex: 1;
}

.tro-text-wrapper h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.tro-text-wrapper p {
    font-size: 1.15rem;
    color: #eee;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.tro-image-wrapper {
    flex: 1;
}

.tro-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(241, 196, 15, 0.1);
}

.tro-table-wrapper {
    margin: 6rem 0;
    overflow-x: auto;
}

.tro-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(44, 26, 44, 0.5);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.tro-table th {
    background-color: #1a0a1a;
    color: var(--primary-color);
    padding: 2rem;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--primary-color);
}

.tro-table td {
    padding: 1.8rem 2rem;
    border-bottom: 1px solid rgba(241, 196, 15, 0.1);
    color: #eee;
    font-size: 1.1rem;
    line-height: 1.6;
}

.tro-table tr:last-child td {
    border-bottom: none;
}

.tro-list {
    list-style: none;
    margin-top: 1.5rem;
}

.tro-list li {
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: #eee;
}

.tro-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.tro-cta-banner {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('images/hero-bg.jpg') center/cover fixed;
    padding: 10rem 5%;
    text-align: center;
    border-radius: 60px;
    margin: 8rem 0;
    border: 1px solid rgba(241, 196, 15, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.tro-cta-banner h2 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.tro-cta-banner p {
    font-size: 1.4rem;
    color: #eee;
    max-width: 800px;
    margin: 0 auto 3rem;
}

@media (max-width: 992px) {
    .tro-hero h1 { font-size: 3rem; }
    .tro-content-block, .tro-content-block.reverse {
        flex-direction: column;
        gap: 3rem;
    }
    .tro-section { padding: 4rem 5%; }
    .tro-text-wrapper h2 { font-size: 2.2rem; }
    .tro-image-wrapper img { height: 350px; }
    .tro-cta-banner h2 { font-size: 2.8rem; }
}

/* Tromso Page Styles (.trm-) */
.trm-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 5%;
}

.trm-hero-content {
    max-width: 900px;
}

.trm-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.trm-hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.trm-section {
    padding: 5rem 10%;
    background-color: var(--bg-dark);
}

.trm-content-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 5rem;
}

.trm-content-block.reverse {
    flex-direction: row-reverse;
}

.trm-text-wrapper {
    flex: 1;
}

.trm-text-wrapper h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.trm-text-wrapper p {
    font-size: 1.15rem;
    color: #eee;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.trm-image-wrapper {
    flex: 1;
}

.trm-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(241, 196, 15, 0.1);
}

.trm-list {
    list-style: none;
    margin-top: 1.5rem;
}

.trm-list li {
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: #eee;
}

.trm-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.trm-cta-banner {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('images/hero-bg.jpg') center/cover fixed;
    padding: 10rem 5%;
    text-align: center;
    border-radius: 60px;
    margin: 8rem 0;
    border: 1px solid rgba(241, 196, 15, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.trm-cta-banner h2 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.trm-cta-banner p {
    font-size: 1.4rem;
    color: #eee;
    max-width: 800px;
    margin: 0 auto 3rem;
}

@media (max-width: 992px) {
    .trm-hero h1 { font-size: 3rem; }
    .trm-content-block, .trm-content-block.reverse {
        flex-direction: column;
        gap: 3rem;
    }
    .trm-section { padding: 4rem 5%; }
    .trm-text-wrapper h2 { font-size: 2.2rem; }
    .trm-image-wrapper img { height: 350px; }
    .trm-cta-banner h2 { font-size: 2.8rem; }
}

/* Romania Page Styles */
.rom-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 6rem 5%;
    margin-top: 60px;
}

.rom-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 10, 26, 0.75);
    z-index: 1;
}

.rom-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.rom-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--primary-color);
    font-family: var(--font-main);
}

.rom-hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.rom-cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 1px;
}

.rom-cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(241, 196, 15, 0.4);
}

.rom-cta-banner {
    background-color: var(--bg-light);
    padding: 6rem 5%;
    text-align: center;
    border-top: 1px solid rgba(241, 196, 15, 0.1);
}

.rom-cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: var(--font-main);
}

.rom-cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rom-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.rom-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.rom-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.rom-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.rom-card {
    background: rgba(44, 26, 44, 0.4);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(241, 196, 15, 0.1);
    text-align: center;
}

.rom-card:hover {
    transform: translateY(-15px);
    background: rgba(44, 26, 44, 0.6);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.rom-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.rom-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.rom-table-container {
    overflow-x: auto;
    margin: 4rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.rom-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(44, 26, 44, 0.6);
}

.rom-table th, .rom-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.rom-table th {
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.rom-faq-item {
    margin-bottom: 2rem;
    background: rgba(44, 26, 44, 0.4);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(241, 196, 15, 0.05);
    transition: var(--transition);
}

.rom-faq-item:hover {
    border-color: rgba(241, 196, 15, 0.2);
}

.rom-faq-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rom-faq-question::after {
    content: '+';
    font-size: 1.5rem;
}

.rom-image-text-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.rom-image-text-block.reverse {
    flex-direction: row-reverse;
}

.rom-image-wrapper {
    flex: 1;
}

.rom-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(241, 196, 15, 0.1);
}

.rom-text-wrapper {
    flex: 1;
}

.rom-text-wrapper h2 {
    text-align: left;
    margin-bottom: 2rem;
}



@media (max-width: 1200px) {
    .rom-section {
        padding: 5rem 5%;
    }
}

@media (max-width: 992px) {
    .rom-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .rom-hero h1 {
        font-size: 3rem;
    }
    .rom-image-text-block, .rom-image-text-block.reverse {
        flex-direction: column;
        gap: 3rem;
    }
    .rom-grid-2 {
        grid-template-columns: 1fr;
    }
    .rom-cta-banner h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .rom-hero h1 {
        font-size: 2.5rem;
    }
    .rom-section h2 {
        font-size: 2.2rem;
    }
    .rom-cta-banner h2 {
        font-size: 2rem;
    }
    .rom-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Sibiu Page Styles */
.sib-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg1.jpg');
    background-size: cover;
    background-position: center;
    padding: 12rem 5% 8rem;
    text-align: center;
}

.sib-hero h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.sib-hero p {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

.sib-cta-banner {
    background: rgba(44, 26, 44, 0.6);
    padding: 6rem 5%;
    text-align: center;
    border-top: 1px solid rgba(241, 196, 15, 0.1);
}

.sib-cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.sib-cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sib-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.sib-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.sib-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1.5rem auto;
}

.sib-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.sib-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.sib-card {
    background: rgba(44, 26, 44, 0.4);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(241, 196, 15, 0.1);
    text-align: center;
}

.sib-card:hover {
    transform: translateY(-15px);
    background: rgba(44, 26, 44, 0.6);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.sib-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.sib-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sib-table-container {
    overflow-x: auto;
    margin: 4rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.sib-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(44, 26, 44, 0.6);
}

.sib-table th, .sib-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sib-table th {
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.sib-image-text-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.sib-image-text-block.reverse {
    flex-direction: row-reverse;
}

.sib-image-wrapper {
    flex: 1;
}

.sib-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(241, 196, 15, 0.1);
}

.sib-text-wrapper {
    flex: 1;
}

.sib-text-wrapper h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.sib-text-wrapper h2::after {
    margin: 1rem 0;
}

.sib-list {
    list-style: none;
    margin: 2rem 0;
}

.sib-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.sib-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

@media (max-width: 1200px) {
    .sib-section {
        padding: 5rem 5%;
    }
}

@media (max-width: 992px) {
    .sib-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .sib-hero h1 {
        font-size: 3rem;
    }
    .sib-image-text-block, .sib-image-text-block.reverse {
        flex-direction: column;
        gap: 3rem;
    }
    .sib-grid-2 {
        grid-template-columns: 1fr;
    }
    .sib-cta-banner h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .sib-hero h1 {
        font-size: 2.5rem;
    }
    .sib-section h2 {
        font-size: 2.2rem;
    }
    .sib-cta-banner h2 {
        font-size: 2rem;
    }
    .sib-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Brașov Page Styles */
.bra-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/city2.jpg');
    background-size: cover;
    background-position: center;
    padding: 12rem 5% 8rem;
    text-align: center;
}

.bra-hero h1 {
    font-size: 4.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.bra-hero p {
    font-size: 1.4rem;
    max-width: 850px;
    margin: 0 auto 3.5rem;
    color: var(--text-color);
    line-height: 1.8;
    letter-spacing: 0.3px;
    font-weight: 400;
}

.bra-cta-banner {
    background: linear-gradient(rgba(44, 26, 44, 0.8), rgba(44, 26, 44, 0.8)), url('images/city5.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 5%;
    text-align: center;
    border-top: 1px solid rgba(241, 196, 15, 0.2);
}

.bra-cta-banner h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}

.bra-cta-banner p {
    font-size: 1.35rem;
    margin-bottom: 3.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
    color: var(--text-color);
    letter-spacing: 0.2px;
}

.bra-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.bra-section h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 3.5rem;
    text-align: center;
    position: relative;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}

.bra-section p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    letter-spacing: 0.2px;
}

.bra-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 1.5rem auto;
}

.bra-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.bra-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.bra-card {
    background: rgba(44, 26, 44, 0.4);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(241, 196, 15, 0.1);
    text-align: center;
}

.bra-card:hover {
    transform: translateY(-15px);
    background: rgba(44, 26, 44, 0.6);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.bra-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.bra-card h3 {
    font-size: 2.1rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', serif;
}

.bra-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    letter-spacing: 0.1px;
}

.bra-table-container {
    overflow-x: auto;
    margin: 4rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.bra-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(44, 26, 44, 0.6);
}

.bra-table th, .bra-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 1.1rem;
    line-height: 1.6;
}

.bra-table th {
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1.5px;
}

.bra-image-text-block {
    display: flex;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
}

.bra-image-text-block.reverse {
    flex-direction: row-reverse;
}

.bra-image-wrapper {
    flex: 1;
}

.bra-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(241, 196, 15, 0.1);
}

.bra-text-wrapper {
    flex: 1.2;
}

.bra-text-wrapper h2 {
    text-align: left;
    margin-bottom: 2.5rem;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
}

.bra-text-wrapper p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    letter-spacing: 0.2px;
}

.bra-text-wrapper h2::after {
    margin: 1.5rem 0;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.bra-list {
    list-style: none;
    margin: 2.5rem 0;
}

.bra-list li {
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1.8rem;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
    letter-spacing: 0.2px;
}

.bra-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

@media (max-width: 1200px) {
    .bra-section {
        padding: 5rem 5%;
    }
}

@media (max-width: 992px) {
    .bra-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .bra-hero h1 {
        font-size: 3rem;
    }
    .bra-image-text-block, .bra-image-text-block.reverse {
        flex-direction: column;
        gap: 3rem;
    }
    .bra-grid-2 {
        grid-template-columns: 1fr;
    }
    .bra-cta-banner h2 {
        font-size: 2.5rem;
    }
}


@media (max-width: 768px) {
    .bra-hero h1 {
        font-size: 2.5rem;
    }
    .bra-hero p {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
    }
    .bra-section h2 {
        font-size: 2.2rem;
    }
    .bra-section p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    .bra-cta-banner h2 {
        font-size: 2rem;
    }
    .bra-cta-banner p {
        font-size: 1.15rem;
        line-height: 1.7;
    }
    .bra-grid-3 {
        grid-template-columns: 1fr;
    }
    .bra-card h3 {
        font-size: 1.7rem;
    }
    .bra-card p {
        font-size: 1.05rem;
    }
}

/* France Page Styles */
.fra-hero {
    padding: 12rem 10% 8rem;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/france.jpg') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fra-hero h1 {
    font-size: 4.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.fra-hero p {
    font-size: 1.4rem;
    margin-bottom: 3.5rem;
    max-width: 900px;
    line-height: 1.8;
    color: var(--text-color);
    letter-spacing: 0.2px;
}

.fra-section {
    padding: 7rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.fra-section h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    position: relative;
    letter-spacing: 1px;
}

.fra-section h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 2rem auto;
}

.fra-section p {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    letter-spacing: 0.2px;
}

.fra-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
}

.fra-card {
    background: rgba(44, 26, 44, 0.45);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    transition: var(--transition);
    border: 1px solid rgba(241, 196, 15, 0.15);
    text-align: center;
    height: 100%;
}

.fra-card:hover {
    transform: translateY(-15px);
    background: rgba(44, 26, 44, 0.7);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.fra-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.fra-card h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.8rem;
    font-family: 'Playfair Display', serif;
}

.fra-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
}

.fra-image-text-block {
    display: flex;
    gap: 6rem;
    align-items: center;
    margin-bottom: 10rem;
}

.fra-image-text-block.reverse {
    flex-direction: row-reverse;
}

.fra-image-wrapper {
    flex: 1;
}

.fra-image-wrapper img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(241, 196, 15, 0.1);
}

.fra-text-wrapper {
    flex: 1.2;
}

.fra-text-wrapper h2 {
    text-align: left;
    margin-bottom: 3rem;
    font-size: 3.2rem;
}

.fra-text-wrapper h2::after {
    margin: 2rem 0;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.fra-list {
    list-style: none;
    margin: 3rem 0;
}

.fra-list li {
    padding-left: 3rem;
    position: relative;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-color);
}

.fra-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.fra-table-container {
    overflow-x: auto;
    margin: 5rem 0;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.fra-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(44, 26, 44, 0.65);
}

.fra-table th, .fra-table td {
    padding: 2rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1.2rem;
}

.fra-table th {
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fra-cta-banner {
    background: linear-gradient(135deg, rgba(44, 26, 44, 0.95), rgba(26, 10, 26, 0.95));
    padding: 8rem 10%;
    text-align: center;
    border-radius: 30px;
    margin: 8rem 10%;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(241, 196, 15, 0.1);
}

.fra-cta-banner h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.fra-cta-banner p {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

@media (max-width: 1200px) {
    .fra-hero h1 { font-size: 3.8rem; }
    .fra-section { padding: 6rem 5%; }
    .fra-image-text-block { gap: 4rem; }
}

@media (max-width: 992px) {
    .fra-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .fra-image-text-block, .fra-image-text-block.reverse {
        flex-direction: column;
        text-align: center;
    }
    .fra-text-wrapper h2 { text-align: center; }
    .fra-text-wrapper h2::after { margin: 2rem auto; }
    .fra-list li { text-align: left; }
}

@media (max-width: 768px) {
    .fra-hero { padding: 10rem 5% 6rem; }
    .fra-hero h1 { font-size: 2.8rem; }
    .fra-hero p { font-size: 1.2rem; }
    .fra-section h2 { font-size: 2.5rem; }
    .fra-section p { font-size: 1.15rem; }
    .fra-grid-3 { grid-template-columns: 1fr; }
    .fra-cta-banner { margin: 5rem 5%; padding: 5rem 5%; }
    .fra-cta-banner h2 { font-size: 2.2rem; }
    .fra-card h3 { font-size: 1.8rem; }
}

/* Munich (MUN) Page Styles */
.mun-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/munich.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.mun-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.mun-hero h1 {
    font-size: 3.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.mun-hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.mun-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.mun-bg-light {
    background-color: var(--bg-light);
    max-width: 100%;
}

.mun-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    text-align: center;
}

.mun-intro-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

.mun-image-text-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.mun-image-text-block.reverse {
    flex-direction: row-reverse;
}

.mun-image-wrapper {
    flex: 1;
}

.mun-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
    height: 400px;
}

.mun-text-wrapper {
    flex: 1;
}

.mun-text-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.mun-text-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.mun-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.mun-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mun-card {
    background: var(--bg-dark);
    border: 1px solid rgba(241, 196, 15, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mun-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.15);
}

.mun-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.mun-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.mun-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.mun-text-box {
    background: rgba(255,255,255,0.02);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.05);
}

.mun-table-container {
    overflow-x: auto;
    margin-top: 3rem;
}

.mun-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    overflow: hidden;
}

.mun-table th, .mun-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241, 196, 15, 0.1);
}

.mun-table th {
    background: rgba(241, 196, 15, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.mun-table td {
    font-size: 1.1rem;
    line-height: 1.6;
}

.mun-faq-container {
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.1);
    overflow: hidden;
}

.mun-faq-item {
    border-bottom: 1px solid rgba(241, 196, 15, 0.1);
}

.mun-faq-item:last-child {
    border-bottom: none;
}

.mun-faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: bold;
    position: relative;
    background: rgba(0,0,0,0.2);
    transition: background 0.3s ease;
}

.mun-faq-question:hover {
    background: rgba(241, 196, 15, 0.05);
}

.mun-faq-question::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.mun-faq-item.active .mun-faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.mun-faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--bg-dark);
}

.mun-faq-item.active .mun-faq-answer {
    padding: 1.5rem 2rem;
    max-height: 600px;
}

.mun-faq-answer p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

.mun-cta-banner {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(26, 10, 26, 0.95), rgba(45, 15, 45, 0.95));
    margin: 4rem auto;
    border-radius: 20px;
    max-width: 1200px;
    border: 1px solid rgba(241, 196, 15, 0.3);
    box-shadow: 0 0 50px rgba(241, 196, 15, 0.1);
}

.mun-cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.mun-cta-banner p {
    font-size: 1.2rem;
    margin: 0 auto 3rem;
    max-width: 800px;
    line-height: 1.8;
}

/* Responsive Styles for Munich Page */
@media (max-width: 1024px) {
    .mun-hero h1 { font-size: 3rem; }
    .mun-section { padding: 5rem 5%; }
    .mun-image-text-block { gap: 3rem; }
    .mun-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .mun-grid-2 { grid-template-columns: 1fr; }
    .mun-text-box { padding: 2rem !important; border-left: none !important; border-top: 1px solid rgba(241,196,15,0.2); }
}

@media (max-width: 768px) {
    .mun-hero h1 { font-size: 2.4rem; }
    .mun-hero p { font-size: 1.1rem; }
    .mun-image-text-block, .mun-image-text-block.reverse {
        flex-direction: column;
    }
    .mun-text-wrapper h2 { text-align: center; }
    .mun-image-wrapper img { height: 300px; }
    .mun-grid-3 { grid-template-columns: 1fr; }
    .mun-section h2 { font-size: 2.2rem; }
    .mun-cta-banner h2 { font-size: 2.2rem; }
    .mun-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
    .mun-faq-question { font-size: 1.1rem; padding: 1.2rem 1.5rem; }
    .mun-faq-answer { padding: 0 1.5rem; }
    .mun-faq-item.active .mun-faq-answer { padding: 1.2rem 1.5rem; }
}

/* Cologne (COL) Page Styles */
.col-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/city3.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.col-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.col-hero h1 {
    font-size: 3.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.col-hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.col-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.col-bg-light {
    background-color: var(--bg-light);
    max-width: 100%;
}

.col-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    text-align: center;
}

.col-intro-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

.col-image-text-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.col-image-text-block.reverse {
    flex-direction: row-reverse;
}

.col-image-wrapper {
    flex: 1;
}

.col-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
    height: 400px;
}

.col-text-wrapper {
    flex: 1;
}

.col-text-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.col-text-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.col-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.col-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.col-card {
    background: var(--bg-dark);
    border: 1px solid rgba(241, 196, 15, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.col-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.15);
}

.col-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.col-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.col-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.col-text-box {
    background: rgba(255,255,255,0.02);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.05);
}

.col-table-container {
    overflow-x: auto;
    margin-top: 3rem;
}

.col-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    overflow: hidden;
}

.col-table th, .col-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241, 196, 15, 0.1);
}

.col-table th {
    background: rgba(241, 196, 15, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.col-table td {
    font-size: 1.1rem;
    line-height: 1.6;
}

.col-cta-banner {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(26, 10, 26, 0.95), rgba(45, 15, 45, 0.95));
    margin: 4rem auto;
    border-radius: 20px;
    max-width: 1200px;
    border: 1px solid rgba(241, 196, 15, 0.3);
    box-shadow: 0 0 50px rgba(241, 196, 15, 0.1);
}

.col-cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.col-cta-banner p {
    font-size: 1.2rem;
    margin: 0 auto 3rem;
    max-width: 800px;
    line-height: 1.8;
}

/* Responsive Styles for Cologne Page */
@media (max-width: 1024px) {
    .col-hero h1 { font-size: 3rem; }
    .col-section { padding: 5rem 5%; }
    .col-image-text-block { gap: 3rem; }
    .col-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .col-grid-2 { grid-template-columns: 1fr; }
    .col-text-box { padding: 2rem !important; border-left: none !important; border-top: 1px solid rgba(241,196,15,0.2); }
}

@media (max-width: 768px) {
    .col-hero h1 { font-size: 2.4rem; }
    .col-hero p { font-size: 1.1rem; }
    .col-image-text-block, .col-image-text-block.reverse {
        flex-direction: column;
    }
    .col-text-wrapper h2 { text-align: center; }
    .col-image-wrapper img { height: 300px; }
    .col-grid-3 { grid-template-columns: 1fr; }
    .col-section h2 { font-size: 2.2rem; }
    .col-cta-banner h2 { font-size: 2.2rem; }
    .col-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
}






/* Spain (ES) Page Styles - using .esp- prefix */
.esp-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.7), rgba(26, 10, 26, 0.7)), url('images/madrid.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.esp-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.esp-hero h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.esp-hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.esp-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.esp-bg-light {
    background-color: var(--bg-light);
    max-width: 100%;
}

.esp-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    text-align: center;
}

.esp-intro-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

.esp-image-text-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.esp-image-text-block.reverse {
    flex-direction: row-reverse;
}

.esp-image-wrapper {
    flex: 1;
}

.esp-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
    height: 400px;
}

.esp-text-wrapper {
    flex: 1;
}

.esp-text-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.esp-text-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.esp-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.esp-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.esp-card {
    background: var(--bg-dark);
    border: 1px solid rgba(241, 196, 15, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.esp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.15);
}

.esp-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.esp-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.esp-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.esp-text-box {
    background: rgba(255,255,255,0.02);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.05);
}

.esp-table-container {
    overflow-x: auto;
    margin-top: 3rem;
}

.esp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    overflow: hidden;
}

.esp-table th, .esp-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241, 196, 15, 0.1);
}

.esp-table th {
    background: rgba(241, 196, 15, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.esp-table td {
    font-size: 1.1rem;
    line-height: 1.6;
}

.esp-cta-banner {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(26, 10, 26, 0.95), rgba(45, 15, 45, 0.95));
    margin: 4rem auto;
    border-radius: 20px;
    max-width: 1200px;
    border: 1px solid rgba(241, 196, 15, 0.3);
    box-shadow: 0 0 50px rgba(241, 196, 15, 0.1);
}

.esp-cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.esp-cta-banner p {
    font-size: 1.2rem;
    margin: 0 auto 3rem;
    max-width: 800px;
    line-height: 1.8;
}

/* Responsive Styles for Spain Page */
@media (max-width: 1024px) {
    .esp-hero h1 { font-size: 3rem; }
    .esp-section { padding: 5rem 5%; }
    .esp-image-text-block { gap: 3rem; }
    .esp-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .esp-grid-2 { grid-template-columns: 1fr; }
    .esp-text-box { padding: 2rem !important; border-left: none !important; border-top: 1px solid rgba(241,196,15,0.2); }
}

@media (max-width: 768px) {
    .esp-hero h1 { font-size: 2.4rem; }
    .esp-hero p { font-size: 1.1rem; }
    .esp-image-text-block, .esp-image-text-block.reverse {
        flex-direction: column;
    }
    .esp-text-wrapper h2 { text-align: center; }
    .esp-image-wrapper img { height: 300px; }
    .esp-grid-3 { grid-template-columns: 1fr; }
    .esp-section h2 { font-size: 2.2rem; }
    .esp-cta-banner h2 { font-size: 2.2rem; }
    .esp-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
}

/* Madrid (MAD) Page Styles - using .mad- prefix */
.mad-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/city2.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.mad-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.mad-hero h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.mad-hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.mad-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.mad-bg-light {
    background-color: var(--bg-light);
    max-width: 100%;
}

.mad-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    text-align: center;
}

.mad-intro-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

.mad-image-text-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.mad-image-text-block.reverse {
    flex-direction: row-reverse;
}

.mad-image-wrapper {
    flex: 1;
}

.mad-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
    height: 400px;
}

.mad-text-wrapper {
    flex: 1;
}

.mad-text-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.mad-text-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.mad-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.mad-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mad-card {
    background: var(--bg-dark);
    border: 1px solid rgba(241, 196, 15, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mad-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.15);
}

.mad-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.mad-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.mad-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.mad-text-box {
    background: rgba(255,255,255,0.02);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.05);
}

.mad-list {
    list-style: none;
    margin-top: 1.5rem;
}

.mad-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.mad-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.mad-cta-banner {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(26, 10, 26, 0.95), rgba(45, 15, 45, 0.95));
    margin: 4rem auto;
    border-radius: 20px;
    max-width: 1200px;
    border: 1px solid rgba(241, 196, 15, 0.3);
    box-shadow: 0 0 50px rgba(241, 196, 15, 0.1);
}

.mad-cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.mad-cta-banner p {
    font-size: 1.2rem;
    margin: 0 auto 3rem;
    max-width: 800px;
    line-height: 1.8;
}

/* Responsive Styles for Madrid Page */
@media (max-width: 1024px) {
    .mad-hero h1 { font-size: 3rem; }
    .mad-section { padding: 5rem 5%; }
    .mad-image-text-block { gap: 3rem; }
    .mad-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .mad-grid-2 { grid-template-columns: 1fr; }
    .mad-text-box { padding: 2rem !important; border-left: none !important; border-top: 1px solid rgba(241,196,15,0.2); }
}

@media (max-width: 768px) {
    .mad-hero h1 { font-size: 2.4rem; }
    .mad-hero p { font-size: 1.1rem; }
    .mad-image-text-block, .mad-image-text-block.reverse {
        flex-direction: column;
    }
    .mad-text-wrapper h2 { text-align: center; }
    .mad-image-wrapper img { height: 300px; }
    .mad-grid-3 { grid-template-columns: 1fr; }
    .mad-section h2 { font-size: 2.2rem; }
    .mad-cta-banner h2 { font-size: 2.2rem; }
    .mad-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
}

/* Barcelona (BCN) Page Styles - using .bcn- prefix */
.bcn-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/barcelona.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.bcn-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.bcn-hero h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.bcn-hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.bcn-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.bcn-bg-light {
    background-color: var(--bg-light);
    max-width: 100%;
}

.bcn-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    text-align: center;
}

.bcn-intro-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

.bcn-image-text-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.bcn-image-text-block.reverse {
    flex-direction: row-reverse;
}

.bcn-image-wrapper {
    flex: 1;
}

.bcn-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
    height: 400px;
}

.bcn-text-wrapper {
    flex: 1;
}

.bcn-text-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.bcn-text-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.bcn-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.bcn-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.bcn-card {
    background: var(--bg-dark);
    border: 1px solid rgba(241, 196, 15, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bcn-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.15);
}

.bcn-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.bcn-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.bcn-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.bcn-text-box {
    background: rgba(255,255,255,0.02);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.05);
}

.bcn-table-container {
    overflow-x: auto;
    margin-top: 3rem;
}

.bcn-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    overflow: hidden;
}

.bcn-table th, .bcn-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241, 196, 15, 0.1);
}

.bcn-table th {
    background: rgba(241, 196, 15, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.bcn-table td {
    font-size: 1.1rem;
    line-height: 1.6;
}

.bcn-cta-banner {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(26, 10, 26, 0.95), rgba(45, 15, 45, 0.95));
    margin: 4rem auto;
    border-radius: 20px;
    max-width: 1200px;
    border: 1px solid rgba(241, 196, 15, 0.3);
    box-shadow: 0 0 50px rgba(241, 196, 15, 0.1);
}

.bcn-cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.bcn-cta-banner p {
    font-size: 1.2rem;
    margin: 0 auto 3rem;
    max-width: 800px;
    line-height: 1.8;
}

/* Responsive Styles for Barcelona Page */
@media (max-width: 1024px) {
    .bcn-hero h1 { font-size: 3rem; }
    .bcn-section { padding: 5rem 5%; }
    .bcn-image-text-block { gap: 3rem; }
    .bcn-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .bcn-grid-2 { grid-template-columns: 1fr; }
    .bcn-text-box { padding: 2rem !important; border-left: none !important; border-top: 1px solid rgba(241,196,15,0.2); }
}

@media (max-width: 768px) {
    .bcn-hero h1 { font-size: 2.4rem; }
    .bcn-hero p { font-size: 1.1rem; }
    .bcn-image-text-block, .bcn-image-text-block.reverse {
        flex-direction: column;
    }
    .bcn-text-wrapper h2 { text-align: center; }
    .bcn-image-wrapper img { height: 300px; }
    .bcn-grid-3 { grid-template-columns: 1fr; }
    .bcn-section h2 { font-size: 2.2rem; }
    .bcn-cta-banner h2 { font-size: 2.2rem; }
    .bcn-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
}

/* Valencia (VAL) Page Styles - using .val- prefix */
.val-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/valencia.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.val-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.val-hero h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.val-hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.val-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.val-bg-light {
    background-color: var(--bg-light);
    max-width: 100%;
}

.val-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    text-align: center;
}

.val-intro-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

.val-image-text-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.val-image-text-block.reverse {
    flex-direction: row-reverse;
}

.val-image-wrapper {
    flex: 1;
}

.val-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
    height: 400px;
}

.val-text-wrapper {
    flex: 1;
}

.val-text-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.val-text-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.val-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.val-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.val-card {
    background: var(--bg-dark);
    border: 1px solid rgba(241, 196, 15, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.val-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.15);
}

.val-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.val-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.val-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.val-text-box {
    background: rgba(255,255,255,0.02);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.05);
}

.val-table-container {
    overflow-x: auto;
    margin-top: 3rem;
}

.val-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    overflow: hidden;
}

.val-table th, .val-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241, 196, 15, 0.1);
}

.val-table th {
    background: rgba(241, 196, 15, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.val-table td {
    font-size: 1.1rem;
    line-height: 1.6;
}

.val-cta-banner {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(26, 10, 26, 0.95), rgba(45, 15, 45, 0.95));
    margin: 4rem auto;
    border-radius: 20px;
    max-width: 1200px;
    border: 1px solid rgba(241, 196, 15, 0.3);
    box-shadow: 0 0 50px rgba(241, 196, 15, 0.1);
}

.val-cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.val-cta-banner p {
    font-size: 1.2rem;
    margin: 0 auto 3rem;
    max-width: 800px;
    line-height: 1.8;
}

/* Responsive Styles for Valencia Page */
@media (max-width: 1024px) {
    .val-hero h1 { font-size: 3rem; }
    .val-section { padding: 5rem 5%; }
    .val-image-text-block { gap: 3rem; }
    .val-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .val-grid-2 { grid-template-columns: 1fr; }
    .val-text-box { padding: 2rem !important; border-left: none !important; border-top: 1px solid rgba(241,196,15,0.2); }
}

@media (max-width: 768px) {
    .val-hero h1 { font-size: 2.4rem; }
    .val-hero p { font-size: 1.1rem; }
    .val-image-text-block, .val-image-text-block.reverse {
        flex-direction: column;
    }
    .val-text-wrapper h2 { text-align: center; }
    .val-image-wrapper img { height: 300px; }
    .val-grid-3 { grid-template-columns: 1fr; }
    .val-section h2 { font-size: 2.2rem; }
    .val-cta-banner h2 { font-size: 2.2rem; }
    .val-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
}

/* Seville (SEV) Page Styles - using .sev- prefix */
.sev-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/es1.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.sev-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.sev-hero h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.sev-hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.sev-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.sev-bg-light {
    background-color: var(--bg-light);
    max-width: 100%;
}

.sev-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    text-align: center;
}

.sev-intro-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

.sev-image-text-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.sev-image-text-block.reverse {
    flex-direction: row-reverse;
}

.sev-image-wrapper {
    flex: 1;
}

.sev-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
    height: 400px;
}

.sev-text-wrapper {
    flex: 1;
}

.sev-text-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.sev-text-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.sev-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.sev-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.sev-card {
    background: var(--bg-dark);
    border: 1px solid rgba(241, 196, 15, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sev-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.15);
}

.sev-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.sev-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.sev-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.sev-text-box {
    background: rgba(255,255,255,0.02);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.05);
}

.sev-table-container {
    overflow-x: auto;
    margin-top: 3rem;
}

.sev-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    overflow: hidden;
}

.sev-table th, .sev-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241, 196, 15, 0.1);
}

.sev-table th {
    background: rgba(241, 196, 15, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.sev-table td {
    font-size: 1.1rem;
    line-height: 1.6;
}

.sev-cta-banner {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(26, 10, 26, 0.95), rgba(45, 15, 45, 0.95));
    margin: 4rem auto;
    border-radius: 20px;
    max-width: 1200px;
    border: 1px solid rgba(241, 196, 15, 0.3);
    box-shadow: 0 0 50px rgba(241, 196, 15, 0.1);
}

.sev-cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.sev-cta-banner p {
    font-size: 1.2rem;
    margin: 0 auto 3rem;
    max-width: 800px;
    line-height: 1.8;
}

/* Responsive Styles for Seville Page */
@media (max-width: 1024px) {
    .sev-hero h1 { font-size: 3rem; }
    .sev-section { padding: 5rem 5%; }
    .sev-image-text-block { gap: 3rem; }
    .sev-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .sev-grid-2 { grid-template-columns: 1fr; }
    .sev-text-box { padding: 2rem !important; border-left: none !important; border-top: 1px solid rgba(241,196,15,0.2); }
}

@media (max-width: 768px) {
    .sev-hero h1 { font-size: 2.4rem; }
    .sev-hero p { font-size: 1.1rem; }
    .sev-image-text-block, .sev-image-text-block.reverse {
        flex-direction: column;
    }
    .sev-text-wrapper h2 { text-align: center; }
    .sev-image-wrapper img { height: 300px; }
    .sev-grid-3 { grid-template-columns: 1fr; }
    .sev-section h2 { font-size: 2.2rem; }
    .sev-cta-banner h2 { font-size: 2.2rem; }
    .sev-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
}

/* Poland (PL) Page Styles - using .pl- prefix */
.pl-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/pl3.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.pl-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.pl-hero h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pl-hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.pl-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.pl-bg-light {
    background-color: var(--bg-light);
    max-width: 100%;
}

.pl-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    text-align: center;
}

.pl-intro-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

.pl-image-text-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.pl-image-text-block.reverse {
    flex-direction: row-reverse;
}

.pl-image-wrapper {
    flex: 1;
}

.pl-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
    height: 400px;
}

.pl-text-wrapper {
    flex: 1;
}

.pl-text-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.pl-text-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.pl-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.pl-card {
    background: var(--bg-dark);
    border: 1px solid rgba(241, 196, 15, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pl-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.15);
}

.pl-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.pl-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.pl-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.pl-text-box {
    background: rgba(255,255,255,0.02);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.05);
}

.pl-table-container {
    overflow-x: auto;
    margin-top: 3rem;
}

.pl-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    overflow: hidden;
}

.pl-table th, .pl-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241, 196, 15, 0.1);
}

.pl-table th {
    background: rgba(241, 196, 15, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.pl-table td {
    font-size: 1.1rem;
    line-height: 1.6;
}

.pl-cta-banner {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(26, 10, 26, 0.95), rgba(45, 15, 45, 0.95));
    margin: 4rem auto;
    border-radius: 20px;
    max-width: 1200px;
    border: 1px solid rgba(241, 196, 15, 0.3);
    box-shadow: 0 0 50px rgba(241, 196, 15, 0.1);
}

.pl-cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.pl-cta-banner p {
    font-size: 1.2rem;
    margin: 0 auto 3rem;
    max-width: 800px;
    line-height: 1.8;
}

/* Responsive Styles for Poland Page */
@media (max-width: 1024px) {
    .pl-hero h1 { font-size: 3rem; }
    .pl-section { padding: 5rem 5%; }
    .pl-image-text-block { gap: 3rem; }
    .pl-grid-2 { grid-template-columns: 1fr; }
    .pl-text-box { padding: 2rem !important; border-left: none !important; border-top: 1px solid rgba(241,196,15,0.2); }
}

@media (max-width: 768px) {
    .pl-hero h1 { font-size: 2.4rem; }
    .pl-hero p { font-size: 1.1rem; }
    .pl-image-text-block, .pl-image-text-block.reverse {
        flex-direction: column;
    }
    .pl-text-wrapper h2 { text-align: center; }
    .pl-image-wrapper img { height: 300px; }
    .pl-section h2 { font-size: 2.2rem; }
    .pl-cta-banner h2 { font-size: 2.2rem; }
    .pl-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
}

/* Warsaw (WAW) Page Styles - using .waw- prefix */
.waw-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/warsaw.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.waw-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.waw-hero h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.waw-hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.waw-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.waw-bg-light {
    background-color: var(--bg-light);
    max-width: 100%;
}

.waw-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    text-align: center;
}

.waw-intro-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

.waw-image-text-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.waw-image-text-block.reverse {
    flex-direction: row-reverse;
}

.waw-image-wrapper {
    flex: 1;
}

.waw-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
    height: 400px;
}

.waw-text-wrapper {
    flex: 1;
}

.waw-text-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.waw-text-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.waw-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.waw-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.waw-card {
    background: var(--bg-dark);
    border: 1px solid rgba(241, 196, 15, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.waw-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.15);
}

.waw-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.waw-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.waw-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.waw-text-box {
    background: rgba(255,255,255,0.02);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241, 196, 15, 0.05);
}

.waw-table-container {
    overflow-x: auto;
    margin-top: 3rem;
}

.waw-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    overflow: hidden;
}

.waw-table th, .waw-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241, 196, 15, 0.1);
}

.waw-table th {
    background: rgba(241, 196, 15, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.waw-table td {
    font-size: 1.1rem;
    line-height: 1.6;
}

.waw-cta-banner {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(26, 10, 26, 0.95), rgba(45, 15, 45, 0.95));
    margin: 4rem auto;
    border-radius: 20px;
    max-width: 1200px;
    border: 1px solid rgba(241, 196, 15, 0.3);
    box-shadow: 0 0 50px rgba(241, 196, 15, 0.1);
}

.waw-cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.waw-cta-banner p {
    font-size: 1.2rem;
    margin: 0 auto 3rem;
    max-width: 800px;
    line-height: 1.8;
}

/* Responsive Styles for Warsaw Page */
@media (max-width: 1024px) {
    .waw-hero h1 { font-size: 3rem; }
    .waw-section { padding: 5rem 5%; }
    .waw-image-text-block { gap: 3rem; }
    .waw-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .waw-grid-2 { grid-template-columns: 1fr; }
    .waw-text-box { padding: 2rem !important; border-left: none !important; border-top: 1px solid rgba(241,196,15,0.2); }
}

@media (max-width: 768px) {
    .waw-hero h1 { font-size: 2.4rem; }
    .waw-hero p { font-size: 1.1rem; }
    .waw-image-text-block, .waw-image-text-block.reverse {
        flex-direction: column;
    }
    .waw-text-wrapper h2 { text-align: center; }
    .waw-image-wrapper img { height: 300px; }
    .waw-grid-3 { grid-template-columns: 1fr; }
    .waw-section h2 { font-size: 2.2rem; }
    .waw-cta-banner h2 { font-size: 2.2rem; }
    .waw-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
}

/* Krakow (KRK) Page Styles - using .krk- prefix */
.krk-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/krakow.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.krk-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.krk-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.krk-hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.krk-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.krk-bg-light {
    background-color: var(--bg-light);
    border-top: 1px solid rgba(241,196,15,0.1);
    border-bottom: 1px solid rgba(241,196,15,0.1);
}

.krk-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.krk-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.krk-image-text-block {
    display: flex;
    gap: 5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.krk-image-text-block.reverse {
    flex-direction: row-reverse;
}

.krk-image-wrapper {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(241,196,15,0.2);
}

.krk-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.krk-image-wrapper:hover img {
    transform: scale(1.05);
}

.krk-text-wrapper {
    flex: 1;
}

.krk-text-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.krk-text-wrapper p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.krk-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.krk-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.krk-card {
    background: rgba(26,10,26,0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(241,196,15,0.15);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.krk-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.krk-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid var(--primary-color);
}

.krk-card h3 {
    color: var(--primary-color);
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
}

.krk-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.krk-text-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.krk-text-box p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

.krk-table-container {
    overflow-x: auto;
    margin-top: 3rem;
}

.krk-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.krk-table th, .krk-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241,196,15,0.1);
}

.krk-table th {
    background: rgba(241,196,15,0.1);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.krk-table td {
    color: var(--text-muted);
    line-height: 1.6;
}

.krk-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.krk-quotes-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.krk-quote {
    background: rgba(26,10,26,0.6);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(241,196,15,0.2);
    position: relative;
}

.krk-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(241,196,15,0.2);
    font-family: 'Playfair Display', serif;
}

.krk-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.krk-quote span {
    color: var(--primary-color);
    font-weight: bold;
    display: block;
    text-align: right;
}

.krk-cta-banner {
    background: linear-gradient(45deg, #1a0a1a, #2a112a);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 5rem;
    text-align: center;
    margin: 4rem 10%;
    box-shadow: 0 10px 40px rgba(241,196,15,0.15);
}

.krk-cta-banner h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.krk-cta-banner p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Responsive Styles for Krakow Page */
@media (max-width: 1024px) {
    .krk-hero h1 { font-size: 3rem; }
    .krk-section { padding: 5rem 5%; }
    .krk-image-text-block { gap: 3rem; }
    .krk-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .krk-grid-2 { grid-template-columns: 1fr; }
    .krk-text-box { padding: 2rem !important; border-left: none !important; border-top: 1px solid rgba(241,196,15,0.2); }
}

@media (max-width: 768px) {
    .krk-hero h1 { font-size: 2.4rem; }
    .krk-hero p { font-size: 1.1rem; }
    .krk-image-text-block, .krk-image-text-block.reverse {
        flex-direction: column;
    }
    .krk-text-wrapper h2 { text-align: center; }
    .krk-image-wrapper img { height: 300px; }
    .krk-grid-3 { grid-template-columns: 1fr; }
    .krk-section h2 { font-size: 2.2rem; }
    .krk-cta-banner h2 { font-size: 2.2rem; }
    .krk-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
}

/* Wroclaw (WRO) Page Styles - using .wro- prefix */
.wro-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/city6.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.wro-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.wro-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.wro-hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.wro-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.wro-bg-light {
    background-color: var(--bg-light);
    border-top: 1px solid rgba(241,196,15,0.1);
    border-bottom: 1px solid rgba(241,196,15,0.1);
}

.wro-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.wro-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.wro-image-text-block {
    display: flex;
    gap: 5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.wro-image-text-block.reverse {
    flex-direction: row-reverse;
}

.wro-image-wrapper {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(241,196,15,0.2);
}

.wro-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.wro-image-wrapper:hover img {
    transform: scale(1.05);
}

.wro-text-wrapper {
    flex: 1;
}

.wro-text-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.wro-text-wrapper p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.wro-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.wro-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.wro-card {
    background: rgba(26,10,26,0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(241,196,15,0.15);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.wro-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.wro-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid var(--primary-color);
}

.wro-card h3 {
    color: var(--primary-color);
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
}

.wro-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.wro-text-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.wro-text-box p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

.wro-table-container {
    overflow-x: auto;
    margin-top: 3rem;
}

.wro-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.wro-table th, .wro-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241,196,15,0.1);
}

.wro-table th {
    background: rgba(241,196,15,0.1);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.wro-table td {
    color: var(--text-muted);
    line-height: 1.6;
}

.wro-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.wro-cta-banner {
    background: linear-gradient(45deg, #1a0a1a, #2a112a);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 5rem;
    text-align: center;
    margin: 4rem 10%;
    box-shadow: 0 10px 40px rgba(241,196,15,0.15);
}

.wro-cta-banner h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.wro-cta-banner p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Responsive Styles for Wroclaw Page */
@media (max-width: 1024px) {
    .wro-hero h1 { font-size: 3rem; }
    .wro-section { padding: 5rem 5%; }
    .wro-image-text-block { gap: 3rem; }
    .wro-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .wro-grid-2 { grid-template-columns: 1fr; }
    .wro-text-box { padding: 2rem !important; border-left: none !important; border-top: 1px solid rgba(241,196,15,0.2); }
}

@media (max-width: 768px) {
    .wro-hero h1 { font-size: 2.4rem; }
    .wro-hero p { font-size: 1.1rem; }
    .wro-image-text-block, .wro-image-text-block.reverse {
        flex-direction: column;
    }
    .wro-text-wrapper h2 { text-align: center; }
    .wro-image-wrapper img { height: 300px; }
    .wro-grid-3 { grid-template-columns: 1fr; }
    .wro-section h2 { font-size: 2.2rem; }
    .wro-cta-banner h2 { font-size: 2.2rem; }
    .wro-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
}

/* Gdansk (GDA) Page Styles - using .gda- prefix */
.gda-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/gdansk.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.gda-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.gda-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.gda-hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.gda-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.gda-bg-light {
    background-color: var(--bg-light);
    border-top: 1px solid rgba(241,196,15,0.1);
    border-bottom: 1px solid rgba(241,196,15,0.1);
}

.gda-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.gda-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.gda-image-text-block {
    display: flex;
    gap: 5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.gda-image-text-block.reverse {
    flex-direction: row-reverse;
}

.gda-image-wrapper {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(241,196,15,0.2);
}

.gda-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gda-image-wrapper:hover img {
    transform: scale(1.05);
}

.gda-text-wrapper {
    flex: 1;
}

.gda-text-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.gda-text-wrapper p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.gda-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.gda-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.gda-card {
    background: rgba(26,10,26,0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(241,196,15,0.15);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.gda-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.gda-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid var(--primary-color);
}

.gda-card h3 {
    color: var(--primary-color);
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
}

.gda-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.gda-text-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gda-text-box p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

.gda-table-container {
    overflow-x: auto;
    margin-top: 3rem;
}

.gda-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.gda-table th, .gda-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241,196,15,0.1);
}

.gda-table th {
    background: rgba(241,196,15,0.1);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.gda-table td {
    color: var(--text-muted);
    line-height: 1.6;
}

.gda-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.gda-cta-banner {
    background: linear-gradient(45deg, #1a0a1a, #2a112a);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 5rem;
    text-align: center;
    margin: 4rem 10%;
    box-shadow: 0 10px 40px rgba(241,196,15,0.15);
}

.gda-cta-banner h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.gda-cta-banner p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Responsive Styles for Gdansk Page */
@media (max-width: 1024px) {
    .gda-hero h1 { font-size: 3rem; }
    .gda-section { padding: 5rem 5%; }
    .gda-image-text-block { gap: 3rem; }
    .gda-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .gda-grid-2 { grid-template-columns: 1fr; }
    .gda-text-box { padding: 2rem !important; border-left: none !important; border-top: 1px solid rgba(241,196,15,0.2); }
}

@media (max-width: 768px) {
    .gda-hero h1 { font-size: 2.4rem; }
    .gda-hero p { font-size: 1.1rem; }
    .gda-image-text-block, .gda-image-text-block.reverse {
        flex-direction: column;
    }
    .gda-text-wrapper h2 { text-align: center; }
    .gda-image-wrapper img { height: 300px; }
    .gda-grid-3 { grid-template-columns: 1fr; }
    .gda-section h2 { font-size: 2.2rem; }
    .gda-cta-banner h2 { font-size: 2.2rem; }
    .gda-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
}

/* Sweden (SE) Page Styles - using .se- prefix */
.se-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/se1.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.se-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.se-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.se-hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.se-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.se-bg-light {
    background-color: var(--bg-light);
    border-top: 1px solid rgba(241,196,15,0.1);
    border-bottom: 1px solid rgba(241,196,15,0.1);
}

.se-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.se-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.se-image-text-block {
    display: flex;
    gap: 5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.se-image-text-block.reverse {
    flex-direction: row-reverse;
}

.se-image-wrapper {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(241,196,15,0.2);
}

.se-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.se-image-wrapper:hover img {
    transform: scale(1.05);
}

.se-text-wrapper {
    flex: 1;
}

.se-text-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.se-text-wrapper p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* PC 端两个城市放一排 / 2 columns grid for PC */
.se-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.se-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.se-card {
    background: rgba(26,10,26,0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(241,196,15,0.15);
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.se-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.se-card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 2px solid var(--primary-color);
}

.se-card-content {
    padding: 2rem;
    flex-grow: 1;
}

.se-card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.se-card-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.se-text-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    height: 100%;
}

.se-text-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.se-text-box p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

.se-table-container {
    overflow-x: auto;
    margin-top: 3rem;
}

.se-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.se-table th, .se-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241,196,15,0.1);
}

.se-table th {
    background: rgba(241,196,15,0.1);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.se-table td {
    color: var(--text-muted);
    line-height: 1.6;
}

.se-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.se-cta-banner {
    background: linear-gradient(45deg, #1a0a1a, #2a112a);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 5rem;
    text-align: center;
    margin: 4rem 10%;
    box-shadow: 0 10px 40px rgba(241,196,15,0.15);
}

.se-cta-banner h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.se-cta-banner p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.se-list {
    list-style: none;
    padding: 0;
}

.se-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.se-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive Styles for Sweden Page */
@media (max-width: 1024px) {
    .se-hero h1 { font-size: 3.5rem; }
    .se-section { padding: 5rem 5%; }
    .se-image-text-block { gap: 3rem; }
    .se-grid-3 { grid-template-columns: repeat(2, 1fr); }
    /* Keeping .se-grid-2 as 2 columns on tablet as well */
}

@media (max-width: 768px) {
    .se-hero h1 { font-size: 2.5rem; }
    .se-hero p { font-size: 1.1rem; }
    .se-image-text-block, .se-image-text-block.reverse {
        flex-direction: column;
    }
    .se-text-wrapper h2 { text-align: center; }
    .se-image-wrapper img { height: 300px; }
    .se-grid-3, .se-grid-2 { grid-template-columns: 1fr; }
    .se-section h2 { font-size: 2.2rem; }
    .se-cta-banner h2 { font-size: 2.2rem; }
    .se-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
    .se-text-box { padding: 2rem; border-left: none; border-top: 4px solid var(--primary-color); }
}

/* Stockholm (STO) Page Styles - using .sto- prefix */
.sto-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/stockholm.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.sto-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.sto-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.sto-hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.sto-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.sto-bg-light {
    background-color: var(--bg-light);
    border-top: 1px solid rgba(241,196,15,0.1);
    border-bottom: 1px solid rgba(241,196,15,0.1);
}

.sto-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.sto-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.sto-image-text-block {
    display: flex;
    gap: 5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.sto-image-text-block.reverse {
    flex-direction: row-reverse;
}

.sto-image-wrapper {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(241,196,15,0.2);
}

.sto-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.sto-image-wrapper:hover img {
    transform: scale(1.05);
}

.sto-text-wrapper {
    flex: 1;
}

.sto-text-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.sto-text-wrapper p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.sto-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.sto-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.sto-card {
    background: rgba(26,10,26,0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(241,196,15,0.15);
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sto-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.sto-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid var(--primary-color);
}

.sto-card-content {
    padding: 2rem;
    flex-grow: 1;
}

.sto-card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.sto-card-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.sto-text-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    height: 100%;
}

.sto-text-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.sto-text-box p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

.sto-table-container {
    overflow-x: auto;
    margin-top: 3rem;
}

.sto-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.sto-table th, .sto-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241,196,15,0.1);
}

.sto-table th {
    background: rgba(241,196,15,0.1);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.sto-table td {
    color: var(--text-muted);
    line-height: 1.6;
}

.sto-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.sto-cta-banner {
    background: linear-gradient(45deg, #1a0a1a, #2a112a);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 5rem;
    text-align: center;
    margin: 4rem 10%;
    box-shadow: 0 10px 40px rgba(241,196,15,0.15);
}

.sto-cta-banner h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.sto-cta-banner p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Responsive Styles for Stockholm Page */
@media (max-width: 1024px) {
    .sto-hero h1 { font-size: 3.5rem; }
    .sto-section { padding: 5rem 5%; }
    .sto-image-text-block { gap: 3rem; }
    .sto-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sto-hero h1 { font-size: 2.5rem; }
    .sto-hero p { font-size: 1.1rem; }
    .sto-image-text-block, .sto-image-text-block.reverse {
        flex-direction: column;
    }
    .sto-text-wrapper h2 { text-align: center; }
    .sto-image-wrapper img { height: 300px; }
    .sto-grid-3, .sto-grid-2 { grid-template-columns: 1fr; }
    .sto-section h2 { font-size: 2.2rem; }
    .sto-cta-banner h2 { font-size: 2.2rem; }
    .sto-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
    .sto-text-box { padding: 2rem; border-left: none; border-top: 4px solid var(--primary-color); }
}

/* Gothenburg (GOT) Page Styles - using .got- prefix */
.got-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/goteborg.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.got-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.got-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.got-hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.got-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.got-bg-light {
    background-color: var(--bg-light);
    border-top: 1px solid rgba(241,196,15,0.1);
    border-bottom: 1px solid rgba(241,196,15,0.1);
}

.got-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.got-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.got-image-text-block {
    display: flex;
    gap: 5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.got-image-text-block.reverse {
    flex-direction: row-reverse;
}

.got-image-wrapper {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(241,196,15,0.2);
}

.got-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.got-image-wrapper:hover img {
    transform: scale(1.05);
}

.got-text-wrapper {
    flex: 1;
}

.got-text-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.got-text-wrapper p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.got-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.got-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.got-card {
    background: rgba(26,10,26,0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(241,196,15,0.15);
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.got-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.got-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid var(--primary-color);
}

.got-card-content {
    padding: 2rem;
    flex-grow: 1;
}

.got-card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.got-card-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.got-text-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    height: 100%;
}

.got-text-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.got-text-box p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

.got-table-container {
    overflow-x: auto;
    margin-top: 3rem;
}

.got-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.got-table th, .got-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241,196,15,0.1);
}

.got-table th {
    background: rgba(241,196,15,0.1);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.got-table td {
    color: var(--text-muted);
    line-height: 1.6;
}

.got-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.got-cta-banner {
    background: linear-gradient(45deg, #1a0a1a, #2a112a);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 5rem;
    text-align: center;
    margin: 4rem 10%;
    box-shadow: 0 10px 40px rgba(241,196,15,0.15);
}

.got-cta-banner h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.got-cta-banner p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Responsive Styles for Gothenburg Page */
@media (max-width: 1024px) {
    .got-hero h1 { font-size: 3.5rem; }
    .got-section { padding: 5rem 5%; }
    .got-image-text-block { gap: 3rem; }
    .got-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .got-hero h1 { font-size: 2.5rem; }
    .got-hero p { font-size: 1.1rem; }
    .got-image-text-block, .got-image-text-block.reverse {
        flex-direction: column;
    }
    .got-text-wrapper h2 { text-align: center; }
    .got-image-wrapper img { height: 300px; }
    .got-grid-3, .got-grid-2 { grid-template-columns: 1fr; }
    .got-section h2 { font-size: 2.2rem; }
    .got-cta-banner h2 { font-size: 2.2rem; }
    .got-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
    .got-text-box { padding: 2rem; border-left: none; border-top: 4px solid var(--primary-color); }
}

/* Malmo (MMA) Page Styles - using .mma- prefix */
.mma-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 10, 26, 0.75), rgba(26, 10, 26, 0.75)), url('images/Malmo.jpg') center/cover no-repeat;
    margin-top: 60px;
    padding: 0 5%;
}

.mma-hero-content {
    max-width: 900px;
    color: #ffffff;
}

.mma-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.mma-hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.mma-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.mma-bg-light {
    background-color: var(--bg-light);
    border-top: 1px solid rgba(241,196,15,0.1);
    border-bottom: 1px solid rgba(241,196,15,0.1);
}

.mma-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.mma-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.mma-image-text-block {
    display: flex;
    gap: 5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.mma-image-text-block.reverse {
    flex-direction: row-reverse;
}

.mma-image-wrapper {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(241,196,15,0.2);
}

.mma-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.mma-image-wrapper:hover img {
    transform: scale(1.05);
}

.mma-text-wrapper {
    flex: 1;
}

.mma-text-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.mma-text-wrapper p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.mma-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.mma-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.mma-card {
    background: rgba(26,10,26,0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(241,196,15,0.15);
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mma-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.mma-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid var(--primary-color);
}

.mma-card-content {
    padding: 2rem;
    flex-grow: 1;
}

.mma-card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.mma-card-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.mma-text-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    height: 100%;
}

.mma-text-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.mma-text-box p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

.mma-table-container {
    overflow-x: auto;
    margin-top: 3rem;
}

.mma-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.mma-table th, .mma-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(241,196,15,0.1);
}

.mma-table th {
    background: rgba(241,196,15,0.1);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.mma-table td {
    color: var(--text-muted);
    line-height: 1.6;
}

.mma-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.mma-list {
    list-style: none;
    padding: 0;
}

.mma-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.mma-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.mma-cta-banner {
    background: linear-gradient(45deg, #1a0a1a, #2a112a);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 5rem;
    text-align: center;
    margin: 4rem 10%;
    box-shadow: 0 10px 40px rgba(241,196,15,0.15);
}

.mma-cta-banner h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mma-cta-banner p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Responsive Styles for Malmo Page */
@media (max-width: 1024px) {
    .mma-hero h1 { font-size: 3.5rem; }
    .mma-section { padding: 5rem 5%; }
    .mma-image-text-block { gap: 3rem; }
    .mma-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mma-hero h1 { font-size: 2.5rem; }
    .mma-hero p { font-size: 1.1rem; }
    .mma-image-text-block, .mma-image-text-block.reverse {
        flex-direction: column;
    }
    .mma-text-wrapper h2 { text-align: center; }
    .mma-image-wrapper img { height: 300px; }
    .mma-grid-3, .mma-grid-2 { grid-template-columns: 1fr; }
    .mma-section h2 { font-size: 2.2rem; }
    .mma-cta-banner h2 { font-size: 2.2rem; }
    .mma-cta-banner { margin: 2rem 5%; padding: 4rem 5%; }
    .mma-text-box { padding: 2rem; border-left: none; border-top: 4px solid var(--primary-color); }
}

/* Uppsala Page Styles */
.upp-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/se1.jpg') center/cover;
    padding: 180px 20px;
    text-align: center;
    color: white;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.upp-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: var(--primary-color, #d4af37);
    position: relative;
    z-index: 2;
}
.upp-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    color: var(--text-muted, #ccc);
    position: relative;
    z-index: 2;
}
.upp-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color, #d4af37);
    color: #1a0a1a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 10;
    cursor: pointer;
}
.upp-btn:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: #fff;
}
.upp-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.upp-section-alt {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}
.upp-section h2 {
    text-align: center;
    color: var(--primary-color, #d4af37);
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}
.upp-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color, #d4af37);
}
.upp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.upp-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .upp-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
.upp-card {
    background: var(--bg-light, #2a112a);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.upp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}
.upp-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.upp-card-content {
    padding: 30px;
    flex-grow: 1;
}
.upp-card h3 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.upp-card p {
    color: var(--text-muted, #ccc);
    line-height: 1.7;
    margin-bottom: 0;
}
.upp-text-block {
    margin-bottom: 40px;
    line-height: 1.8;
    color: var(--text-muted, #ccc);
    font-size: 1.1rem;
}
.upp-text-block p {
    margin-bottom: 15px;
}
.upp-text-block h3 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 20px;
    font-size: 1.8rem;
}
.upp-faq {
    background: var(--bg-light, #2a112a);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    border-left: 4px solid var(--primary-color, #d4af37);
}
.upp-faq h4 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.upp-faq p {
    color: var(--text-muted, #ccc);
    line-height: 1.7;
    margin-bottom: 0;
}
.upp-list {
    list-style-type: none;
    padding: 0;
}
.upp-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
    color: var(--text-muted, #ccc);
}
.upp-list li::before {
    content: '★';
    color: var(--primary-color, #d4af37);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}
.upp-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.upp-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light, #2a112a);
}
.upp-table th, .upp-table td {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 18px;
    text-align: left;
}
.upp-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color, #d4af37);
    font-weight: 600;
    font-size: 1.1rem;
}
.upp-table td {
    color: var(--text-muted, #ccc);
}
.upp-table tr:nth-child(even) {
    background-color: rgba(255,255,255,0.02);
}
.upp-table tr:hover td {
    background-color: rgba(255,255,255,0.05);
}
.upp-highlight {
    color: var(--primary-color, #d4af37);
    font-weight: bold;
}

/* Italy Page Styles */
.it-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/it1.jpg') center/cover;
    padding: 120px 20px;
    text-align: center;
    color: white;
}
.it-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: var(--primary-color, #d4af37);
}
.it-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    color: var(--text-muted, #ccc);
}
.it-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color, #d4af37);
    color: #1a0a1a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}
.it-btn:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: #fff;
}
.it-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.it-section-alt {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}
.it-section h2 {
    text-align: center;
    color: var(--primary-color, #d4af37);
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}
.it-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color, #d4af37);
}
.it-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.it-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .it-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
.it-card {
    background: var(--bg-light, #2a112a);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.it-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}
.it-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.it-card-content {
    padding: 30px;
    flex-grow: 1;
}
.it-card h3 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.it-card p {
    color: var(--text-muted, #ccc);
    line-height: 1.7;
    margin-bottom: 0;
}
.it-text-block {
    margin-bottom: 40px;
    line-height: 1.8;
    color: var(--text-muted, #ccc);
    font-size: 1.1rem;
}
.it-text-block p {
    margin-bottom: 15px;
}
.it-text-block h3 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 20px;
    font-size: 1.8rem;
}
.it-faq {
    background: var(--bg-light, #2a112a);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    border-left: 4px solid var(--primary-color, #d4af37);
}
.it-faq h4 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.it-faq p {
    color: var(--text-muted, #ccc);
    line-height: 1.7;
    margin-bottom: 0;
}
.it-list {
    list-style-type: none;
    padding: 0;
}
.it-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
    color: var(--text-muted, #ccc);
}
.it-list li::before {
    content: '★';
    color: var(--primary-color, #d4af37);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}
.it-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.it-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light, #2a112a);
}
.it-table th, .it-table td {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 18px;
    text-align: left;
}
.it-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color, #d4af37);
    font-weight: 600;
    font-size: 1.1rem;
}
.it-table td {
    color: var(--text-muted, #ccc);
}
.it-table tr:nth-child(even) {
    background-color: rgba(255,255,255,0.02);
}
.it-table tr:hover td {
    background-color: rgba(255,255,255,0.05);
}
.it-highlight {
    color: var(--primary-color, #d4af37);
    font-weight: bold;
}

/* Rome Page Styles */
.rom-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/rome.jpg') center/cover;
    padding: 180px 20px;
    text-align: center;
    color: white;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.rom-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    color: var(--primary-color, #d4af37);
    position: relative;
    z-index: 2;
}
.rom-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    color: var(--text-muted, #ccc);
    position: relative;
    z-index: 2;
}
.rom-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color, #d4af37);
    color: #1a0a1a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 10;
    cursor: pointer;
}
.rom-btn:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: #fff;
}
.rom-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.rom-section-alt {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}
.rom-section h2 {
    text-align: center;
    color: var(--primary-color, #d4af37);
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}
.rom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.rom-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .rom-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
.rom-card {
    background: var(--bg-light, #2a112a);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.rom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}
.rom-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.rom-card-content {
    padding: 30px;
    flex-grow: 1;
}
.rom-card h3 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.rom-card p {
    color: var(--text-muted, #ccc);
    line-height: 1.7;
    margin-bottom: 0;
}
.rom-text-block {
    margin-bottom: 40px;
    line-height: 1.8;
    color: var(--text-muted, #ccc);
    font-size: 1.1rem;
}
.rom-text-block p {
    margin-bottom: 15px;
}
.rom-text-block h3 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 20px;
    font-size: 1.8rem;
}
.rom-list {
    list-style-type: none;
    padding: 0;
}
.rom-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
    color: var(--text-muted, #ccc);
}
.rom-list li::before {
    content: '✦';
    color: var(--primary-color, #d4af37);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}
.rom-highlight {
    color: var(--primary-color, #d4af37);
    font-weight: bold;
}
.rom-travel-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-light, #2a112a);
    border-radius: 15px;
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
@media (min-width: 992px) {
    .rom-travel-card {
        flex-direction: row;
    }
    .rom-travel-card.reverse {
        flex-direction: row-reverse;
    }
    .rom-travel-img {
        width: 45%;
    }
    .rom-travel-content {
        width: 55%;
    }
}
.rom-travel-img img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}
.rom-travel-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.rom-travel-content h3 {
    color: var(--primary-color, #d4af37);
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.rom-travel-content p {
    color: var(--text-muted, #ccc);
    line-height: 1.8;
}

/* Venice Page Styles */
.ven-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/it3.jpg') center/cover;
    padding: 180px 20px;
    text-align: center;
    color: white;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.ven-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    color: var(--primary-color, #d4af37);
    position: relative;
    z-index: 2;
}
.ven-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    color: var(--text-muted, #ccc);
    position: relative;
    z-index: 2;
}
.ven-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color, #d4af37);
    color: #1a0a1a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 10;
    cursor: pointer;
}
.ven-btn:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: #fff;
}
.ven-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.ven-section-alt {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}
.ven-section h2 {
    text-align: center;
    color: var(--primary-color, #d4af37);
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}
.ven-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.ven-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .ven-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
.ven-card {
    background: var(--bg-light, #2a112a);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.ven-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}
.ven-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.ven-card-content {
    padding: 30px;
    flex-grow: 1;
}
.ven-card h3 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.ven-card p {
    color: var(--text-muted, #ccc);
    line-height: 1.7;
    margin-bottom: 0;
}
.ven-text-block {
    margin-bottom: 40px;
    line-height: 1.8;
    color: var(--text-muted, #ccc);
    font-size: 1.1rem;
}
.ven-text-block p {
    margin-bottom: 15px;
}
.ven-text-block h3 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 20px;
    font-size: 1.8rem;
}
.ven-list {
    list-style-type: none;
    padding: 0;
}
.ven-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
    color: var(--text-muted, #ccc);
}
.ven-list li::before {
    content: '✧';
    color: var(--primary-color, #d4af37);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}
.ven-highlight {
    color: var(--primary-color, #d4af37);
    font-weight: bold;
}
.ven-faq {
    background: var(--bg-light, #2a112a);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    border-left: 4px solid var(--primary-color, #d4af37);
}
.ven-faq h4 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.ven-faq p {
    color: var(--text-muted, #ccc);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Florence Page Styles */
.flo-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/florence.jpg') center/cover;
    padding: 180px 20px;
    text-align: center;
    color: white;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.flo-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    color: var(--primary-color, #d4af37);
    position: relative;
    z-index: 2;
}
.flo-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    color: var(--text-muted, #ccc);
    position: relative;
    z-index: 2;
}
.flo-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color, #d4af37);
    color: #1a0a1a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 10;
    cursor: pointer;
}
.flo-btn:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: #fff;
}
.flo-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.flo-section-alt {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}
.flo-section h2 {
    text-align: center;
    color: var(--primary-color, #d4af37);
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}
.flo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .flo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .flo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.flo-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .flo-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
.flo-card {
    background: var(--bg-light, #2a112a);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.flo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}
.flo-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.flo-card-content {
    padding: 30px;
    flex-grow: 1;
}
.flo-card h3 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.flo-card p {
    color: var(--text-muted, #ccc);
    line-height: 1.7;
    margin-bottom: 0;
}
.flo-text-block {
    margin-bottom: 40px;
    line-height: 1.8;
    color: var(--text-muted, #ccc);
    font-size: 1.1rem;
}
.flo-text-block p {
    margin-bottom: 15px;
}
.flo-text-block h3 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 20px;
    font-size: 1.8rem;
}
.flo-list {
    list-style-type: none;
    padding: 0;
}
.flo-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
    color: var(--text-muted, #ccc);
}
.flo-list li::before {
    content: '⚜';
    color: var(--primary-color, #d4af37);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}
.flo-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.flo-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light, #2a112a);
}
.flo-table th, .flo-table td {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 18px;
    text-align: left;
}
.flo-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color, #d4af37);
    font-weight: 600;
    font-size: 1.1rem;
}
.flo-table td {
    color: var(--text-muted, #ccc);
}
.flo-table tr:nth-child(even) {
    background-color: rgba(255,255,255,0.02);
}
.flo-table tr:hover td {
    background-color: rgba(255,255,255,0.05);
}
.flo-highlight {
    color: var(--primary-color, #d4af37);
    font-weight: bold;
}

/* Milan Page Styles */
.mil-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/milan.jpg') center/cover;
    padding: 180px 20px;
    text-align: center;
    color: white;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.mil-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    color: var(--primary-color, #d4af37);
    position: relative;
    z-index: 2;
}
.mil-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    color: var(--text-muted, #ccc);
    position: relative;
    z-index: 2;
}
.mil-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color, #d4af37);
    color: #1a0a1a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 10;
    cursor: pointer;
}
.mil-btn:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: #fff;
}
.mil-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.mil-section-alt {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}
.mil-section h2 {
    text-align: center;
    color: var(--primary-color, #d4af37);
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}
/* No underline for mil-section h2 */
.mil-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .mil-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .mil-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.mil-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .mil-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
.mil-card {
    background: var(--bg-light, #2a112a);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.mil-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}
.mil-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--primary-color, #d4af37);
}
.mil-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.mil-card h3 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.mil-card p {
    color: var(--text-muted, #ccc);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.mil-text-block {
    background: var(--bg-light, #2a112a);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color, #d4af37);
}
.mil-text-block p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-muted, #ccc);
    font-size: 1.1rem;
}
.mil-text-block p:last-child {
    margin-bottom: 0;
}
.mil-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.mil-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-muted, #ccc);
}
.mil-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color, #d4af37);
}
.mil-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    background: var(--bg-light, #2a112a);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.mil-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.mil-table th, .mil-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.mil-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color, #d4af37);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mil-table tr:last-child td {
    border-bottom: none;
}
.mil-table tr:hover td {
    background-color: rgba(255,255,255,0.05);
}
.mil-highlight {
    color: var(--primary-color, #d4af37);
    font-weight: bold;
}

/* Portugal Page Styles */
.pt-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero-bg.jpg') center/cover;
    padding: 180px 20px;
    text-align: center;
    color: white;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.pt-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    color: var(--primary-color, #d4af37);
    position: relative;
    z-index: 2;
}
.pt-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    color: var(--text-muted, #ccc);
    position: relative;
    z-index: 2;
}
.pt-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color, #d4af37);
    color: #1a0a1a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 10;
    cursor: pointer;
}
.pt-btn:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: #fff;
}
.pt-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.pt-section-alt {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}
.pt-section h2 {
    text-align: center;
    color: var(--primary-color, #d4af37);
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}
.pt-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .pt-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .pt-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.pt-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .pt-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
.pt-card {
    background: var(--bg-light, #2a112a);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.pt-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}
.pt-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--primary-color, #d4af37);
}
.pt-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.pt-card h3 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.pt-card p {
    color: var(--text-muted, #ccc);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.pt-text-block {
    background: var(--bg-light, #2a112a);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color, #d4af37);
}
.pt-text-block p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-muted, #ccc);
    font-size: 1.1rem;
}
.pt-text-block p:last-child {
    margin-bottom: 0;
}
.pt-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.pt-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-muted, #ccc);
}
.pt-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color, #d4af37);
}
.pt-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    background: var(--bg-light, #2a112a);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.pt-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.pt-table th, .pt-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.pt-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color, #d4af37);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pt-table tr:last-child td {
    border-bottom: none;
}
.pt-table tr:hover td {
    background-color: rgba(255,255,255,0.05);
}
.pt-highlight {
    color: var(--primary-color, #d4af37);
    font-weight: bold;
}

/* Lisbon Page Styles */
.lis-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/city1.jpg') center/cover;
    padding: 180px 20px;
    text-align: center;
    color: white;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.lis-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    color: var(--primary-color, #d4af37);
    position: relative;
    z-index: 2;
}
.lis-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    color: var(--text-muted, #ccc);
    position: relative;
    z-index: 2;
}
.lis-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color, #d4af37);
    color: #1a0a1a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 10;
    cursor: pointer;
}
.lis-btn:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: #fff;
}
.lis-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.lis-section-alt {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}
.lis-section h2 {
    text-align: center;
    color: var(--primary-color, #d4af37);
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}
.lis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .lis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .lis-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.lis-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .lis-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
.lis-card {
    background: var(--bg-light, #2a112a);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.lis-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}
.lis-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--primary-color, #d4af37);
}
.lis-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.lis-card h3 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.lis-card p {
    color: var(--text-muted, #ccc);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.lis-text-block {
    background: var(--bg-light, #2a112a);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color, #d4af37);
}
.lis-text-block p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-muted, #ccc);
    font-size: 1.1rem;
}
.lis-text-block p:last-child {
    margin-bottom: 0;
}
.lis-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.lis-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-muted, #ccc);
}
.lis-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color, #d4af37);
}
.lis-highlight {
    color: var(--primary-color, #d4af37);
    font-weight: bold;
}

/* Porto Page Styles */
.por-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/city2.jpg') center/cover;
    padding: 180px 20px;
    text-align: center;
    color: white;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.por-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    color: var(--primary-color, #d4af37);
    position: relative;
    z-index: 2;
}
.por-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    color: var(--text-muted, #ccc);
    position: relative;
    z-index: 2;
}
.por-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color, #d4af37);
    color: #1a0a1a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 10;
    cursor: pointer;
}
.por-btn:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: #fff;
}
.por-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.por-section-alt {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}
.por-section h2 {
    text-align: center;
    color: var(--primary-color, #d4af37);
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}
.por-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .por-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .por-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.por-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .por-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
.por-card {
    background: var(--bg-light, #2a112a);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.por-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}
.por-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--primary-color, #d4af37);
}
.por-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.por-card h3 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.por-card p {
    color: var(--text-muted, #ccc);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.por-text-block {
    background: var(--bg-light, #2a112a);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color, #d4af37);
}
.por-text-block p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-muted, #ccc);
    font-size: 1.1rem;
}
.por-text-block p:last-child {
    margin-bottom: 0;
}
.por-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.por-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-muted, #ccc);
}
.por-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color, #d4af37);
}
.por-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    background: var(--bg-light, #2a112a);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.por-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.por-table th, .por-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.por-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color, #d4af37);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.por-table tr:last-child td {
    border-bottom: none;
}
.por-table tr:hover td {
    background-color: rgba(255,255,255,0.05);
}
.por-highlight {
    color: var(--primary-color, #d4af37);
    font-weight: bold;
}

/* Sintra Page Styles */
.sin-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/city3.jpg') center/cover;
    padding: 180px 20px;
    text-align: center;
    color: white;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.sin-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    color: var(--primary-color, #d4af37);
    position: relative;
    z-index: 2;
}
.sin-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    color: var(--text-muted, #ccc);
    position: relative;
    z-index: 2;
}
.sin-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color, #d4af37);
    color: #1a0a1a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 10;
    cursor: pointer;
}
.sin-btn:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: #fff;
}
.sin-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.sin-section-alt {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}
.sin-section h2 {
    text-align: center;
    color: var(--primary-color, #d4af37);
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}
.sin-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .sin-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .sin-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.sin-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .sin-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
.sin-card {
    background: var(--bg-light, #2a112a);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.sin-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}
.sin-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--primary-color, #d4af37);
}
.sin-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.sin-card h3 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.sin-card p {
    color: var(--text-muted, #ccc);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.sin-text-block {
    background: var(--bg-light, #2a112a);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color, #d4af37);
}
.sin-text-block p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-muted, #ccc);
    font-size: 1.1rem;
}
.sin-text-block p:last-child {
    margin-bottom: 0;
}
.sin-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.sin-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-muted, #ccc);
}
.sin-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color, #d4af37);
}
.sin-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    background: var(--bg-light, #2a112a);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.sin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.sin-table th, .sin-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.sin-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color, #d4af37);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sin-table tr:last-child td {
    border-bottom: none;
}
.sin-table tr:hover td {
    background-color: rgba(255,255,255,0.05);
}
.sin-highlight {
    color: var(--primary-color, #d4af37);
    font-weight: bold;
}


/* Coimbra Page Styles (.coi- namespace) */
.coi-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg1.jpg') center/cover no-repeat;
    padding: 160px 20px 100px;
    text-align: center;
    color: white;
}

.coi-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.coi-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.coi-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text-color, #e0e0e0);
}

.coi-section-alt {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 80px 20px;
    color: var(--text-color, #e0e0e0);
}

.coi-section-alt .coi-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.coi-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color, #d4af37);
    font-family: 'Playfair Display', serif;
}

.coi-text-block {
    margin-bottom: 40px;
}

.coi-text-block h2 {
    font-size: 2rem;
    color: var(--primary-color, #d4af37);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.coi-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color, #e0e0e0);
    margin-bottom: 15px;
}

.coi-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .coi-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.coi-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .coi-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .coi-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.coi-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.coi-card:hover {
    transform: translateY(-5px);
}

.coi-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.coi-card-content {
    padding: 25px;
}

.coi-card-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color, #d4af37);
    margin-bottom: 15px;
}

.coi-card-content p {
    color: var(--text-color, #e0e0e0);
    line-height: 1.6;
}

.coi-image-wrapper img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.coi-list {
    list-style: none;
    padding: 0;
}

.coi-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color, #e0e0e0);
}

.coi-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color, #d4af37);
    font-weight: bold;
    font-size: 1.2rem;
}

.coi-cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('../images/hero-bg.jpg') center/cover no-repeat;
    color: white;
}

.coi-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.coi-cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.coi-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
    min-width: 600px;
}

.coi-table th, .coi-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--text-color, #e0e0e0);
}

.coi-table th {
    background-color: var(--primary-color, #d4af37);
    color: #fff;
    font-weight: 600;
}

.coi-table tr:last-child td {
    border-bottom: none;
}

.coi-table tr:hover td {
    background-color: rgba(255,255,255,0.05);
}


/* Slovakia Page Styles (.sk- namespace) */
.sk-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/sk1.jpg') center/cover no-repeat;
    padding: 180px 20px 100px;
    text-align: center;
    color: white;
}

.sk-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.sk-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.sk-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text-color, #e0e0e0);
}

.sk-section-alt {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 80px 20px;
    color: var(--text-color, #e0e0e0);
}

.sk-section-alt .sk-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.sk-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color, #d4af37);
    font-family: 'Playfair Display', serif;
}

.sk-text-block {
    margin-bottom: 40px;
}

.sk-text-block h2 {
    font-size: 2rem;
    color: var(--primary-color, #d4af37);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.sk-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color, #e0e0e0);
    margin-bottom: 15px;
}

.sk-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .sk-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.sk-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .sk-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sk-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sk-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .sk-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sk-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sk-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.sk-card:hover {
    transform: translateY(-5px);
}

.sk-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.sk-card-content {
    padding: 25px;
}

.sk-card-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color, #d4af37);
    margin-bottom: 15px;
}

.sk-card-content p {
    color: var(--text-color, #e0e0e0);
    line-height: 1.6;
}

.sk-image-wrapper img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sk-list {
    list-style: none;
    padding: 0;
}

.sk-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color, #e0e0e0);
}

.sk-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color, #d4af37);
    font-weight: bold;
    font-size: 1.2rem;
}

.sk-cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('images/hero-bg1.jpg') center/cover no-repeat;
    color: white;
}

.sk-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.sk-cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.sk-table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
}

.sk-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
    min-width: 600px;
}

.sk-table th, .sk-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--text-color, #e0e0e0);
}

.sk-table th {
    background-color: var(--primary-color, #d4af37);
    color: #fff;
    font-weight: 600;
}

.sk-table tr:last-child td {
    border-bottom: none;
}

.sk-table tr:hover td {
    background-color: rgba(255,255,255,0.05);
}

.sk-faq {
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 20px;
    background: rgba(255,255,255,0.02);
}

.sk-faq h3 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.sk-faq p {
    color: var(--text-color, #e0e0e0);
    line-height: 1.6;
    margin: 0;
}


/* Bratislava Page Styles (.bra- namespace) */
.bra-hero { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/bratislava.jpg') center/cover; padding: 160px 20px; text-align: center; color: white; }
.bra-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.bra-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.bra-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.bra-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.bra-inner { max-width: 1200px; margin: 0 auto; }
.bra-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.bra-text-block { margin-bottom: 40px; }
.bra-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.bra-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.bra-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.bra-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .bra-grid { grid-template-columns: 1fr 1fr; } 
    .bra-grid-cards { grid-template-columns: 1fr 1fr; }
}
.bra-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.bra-card:hover { transform: translateY(-5px); }
.bra-card img { width: 100%; height: 250px; object-fit: cover; }
.bra-card-content { padding: 25px; }
.bra-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.bra-list { list-style: none; padding: 0; }
.bra-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.bra-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.bra-table-wrapper { overflow-x: auto; margin-top: 20px; width: 100%; display: block; }
.bra-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.05); min-width: 600px; border-radius: 8px; overflow: hidden; }
.bra-table th, .bra-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--text-color, #e0e0e0); }
.bra-table th { background: var(--primary-color, #d4af37); color: white; font-weight: 600; }
.bra-table tr:hover td { background-color: rgba(255,255,255,0.05); }
.bra-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('images/hero-bg1.jpg') center/cover no-repeat; color: white; }

/* Kosice Page Styles (.kos- namespace) */
.kos-hero { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/kosice.jpg') center/cover; padding: 160px 20px; text-align: center; color: white; }
.kos-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.kos-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.kos-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.kos-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.kos-inner { max-width: 1200px; margin: 0 auto; }
.kos-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.kos-text-block { margin-bottom: 40px; }
.kos-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.kos-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.kos-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.kos-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .kos-grid { grid-template-columns: 1fr 1fr; } 
    .kos-grid-cards { grid-template-columns: 1fr 1fr; }
}
.kos-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.kos-card:hover { transform: translateY(-5px); }
.kos-card img { width: 100%; height: 250px; object-fit: cover; }
.kos-card-content { padding: 25px; }
.kos-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.kos-list { list-style: none; padding: 0; }
.kos-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.kos-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.kos-table-wrapper { overflow-x: auto; margin-top: 20px; width: 100%; display: block; }
.kos-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.05); min-width: 600px; border-radius: 8px; overflow: hidden; }
.kos-table th, .kos-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--text-color, #e0e0e0); }
.kos-table th { background: var(--primary-color, #d4af37); color: white; font-weight: 600; }
.kos-table tr:hover td { background-color: rgba(255,255,255,0.05); }
.kos-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('images/hero-bg1.jpg') center/cover no-repeat; color: white; }

/* Presov Page Styles (.pre- namespace) */
.pre-hero { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/city1.jpg') center/cover; padding: 160px 20px; text-align: center; color: white; }
.pre-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.pre-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.pre-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.pre-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.pre-inner { max-width: 1200px; margin: 0 auto; }
.pre-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.pre-text-block { margin-bottom: 40px; }
.pre-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.pre-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.pre-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.pre-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .pre-grid { grid-template-columns: 1fr 1fr; } 
    .pre-grid-cards { grid-template-columns: 1fr 1fr; }
}
.pre-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.pre-card:hover { transform: translateY(-5px); }
.pre-card img { width: 100%; height: 250px; object-fit: cover; }
.pre-card-content { padding: 25px; }
.pre-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.pre-list { list-style: none; padding: 0; }
.pre-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.pre-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.pre-table-wrapper { overflow-x: auto; margin-top: 20px; width: 100%; display: block; }
.pre-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.05); min-width: 600px; border-radius: 8px; overflow: hidden; }
.pre-table th, .pre-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--text-color, #e0e0e0); }
.pre-table th { background: var(--primary-color, #d4af37); color: white; font-weight: 600; }
.pre-table tr:hover td { background-color: rgba(255,255,255,0.05); }
.pre-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('images/hero-bg1.jpg') center/cover no-repeat; color: white; }

/* Zilina Page Styles (.zil- namespace) */
.zil-hero { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/zilina.jpg') center/cover; padding: 160px 20px; text-align: center; color: white; }
.zil-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.zil-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.zil-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.zil-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.zil-inner { max-width: 1200px; margin: 0 auto; }
.zil-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.zil-text-block { margin-bottom: 40px; }
.zil-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.zil-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.zil-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.zil-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .zil-grid { grid-template-columns: 1fr 1fr; } 
    .zil-grid-cards { grid-template-columns: 1fr 1fr; }
}
.zil-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.zil-card:hover { transform: translateY(-5px); }
.zil-card img { width: 100%; height: 250px; object-fit: cover; }
.zil-card-content { padding: 25px; }
.zil-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.zil-list { list-style: none; padding: 0; }
.zil-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.zil-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.zil-table-wrapper { overflow-x: auto; margin-top: 20px; width: 100%; display: block; }
.zil-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.05); min-width: 600px; border-radius: 8px; overflow: hidden; }
.zil-table th, .zil-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--text-color, #e0e0e0); }
.zil-table th { background: var(--primary-color, #d4af37); color: white; font-weight: 600; }
.zil-table tr:hover td { background-color: rgba(255,255,255,0.05); }
.zil-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('images/hero-bg1.jpg') center/cover no-repeat; color: white; }

/* Belgium (.be-) Styles */
.be-hero { padding: 160px 20px; text-align: center; color: white; }
.be-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.be-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.be-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.be-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.be-inner { max-width: 1200px; margin: 0 auto; }
.be-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.be-text-block { margin-bottom: 40px; }
.be-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.be-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.be-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.be-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .be-grid { grid-template-columns: 1fr 1fr; } 
    .be-grid-cards { grid-template-columns: 1fr 1fr; }
}
@media(min-width:1024px){ 
    .be-grid-cards { grid-template-columns: repeat(4, 1fr); }
}
.be-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.be-card:hover { transform: translateY(-5px); }
.be-card img { width: 100%; height: 250px; object-fit: cover; }
.be-card-content { padding: 25px; }
.be-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.be-list { list-style: none; padding: 0; }
.be-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.be-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.be-table-wrapper { overflow-x: auto; margin-top: 20px; width: 100%; display: block; }
.be-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.05); min-width: 600px; border-radius: 8px; overflow: hidden; }
.be-table th, .be-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--text-color, #e0e0e0); }
.be-table th { background: var(--primary-color, #d4af37); color: white; font-weight: 600; }
.be-table tr:hover td { background-color: rgba(255,255,255,0.05); }
.be-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('images/hero-bg1.jpg') center/cover no-repeat; color: white; }
.be-image-wrapper img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* Brussels (.bru-) Styles */
.bru-hero { padding: 160px 20px; text-align: center; color: white; }
.bru-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.bru-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.bru-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.bru-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.bru-inner { max-width: 1200px; margin: 0 auto; }
.bru-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.bru-text-block { margin-bottom: 40px; }
.bru-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.bru-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.bru-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.bru-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .bru-grid { grid-template-columns: 1fr 1fr; } 
    .bru-grid-cards { grid-template-columns: 1fr 1fr; }
}
@media(min-width:1024px){ 
    .bru-grid-cards { grid-template-columns: repeat(4, 1fr); }
}
.bru-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.bru-card:hover { transform: translateY(-5px); }
.bru-card img { width: 100%; height: 250px; object-fit: cover; }
.bru-card-content { padding: 25px; }
.bru-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.bru-list { list-style: none; padding: 0; }
.bru-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.bru-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.bru-table-wrapper { overflow-x: auto; margin-top: 20px; width: 100%; display: block; }
.bru-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.05); min-width: 600px; border-radius: 8px; overflow: hidden; }
.bru-table th, .bru-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--text-color, #e0e0e0); }
.bru-table th { background: var(--primary-color, #d4af37); color: white; font-weight: 600; }
.bru-table tr:hover td { background-color: rgba(255,255,255,0.05); }
.bru-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('../images/hero-bg1.jpg') center/cover no-repeat; color: white; }
.bru-image-wrapper img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* Antwerp (.ant-) Styles */
.ant-hero { padding: 160px 20px; text-align: center; color: white; }
.ant-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.ant-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.ant-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.ant-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.ant-inner { max-width: 1200px; margin: 0 auto; }
.ant-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.ant-text-block { margin-bottom: 40px; }
.ant-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.ant-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.ant-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.ant-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .ant-grid { grid-template-columns: 1fr 1fr; } 
    .ant-grid-cards { grid-template-columns: 1fr 1fr; }
}
@media(min-width:1024px){ 
    .ant-grid-cards { grid-template-columns: repeat(2, 1fr); } /* 2 cards look better centered or large, but lets allow 2 columns */
}
.ant-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.ant-card:hover { transform: translateY(-5px); }
.ant-card img { width: 100%; height: 250px; object-fit: cover; }
.ant-card-content { padding: 25px; }
.ant-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.ant-list { list-style: none; padding: 0; }
.ant-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.ant-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.ant-table-wrapper { overflow-x: auto; margin-top: 20px; width: 100%; display: block; }
.ant-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.05); min-width: 600px; border-radius: 8px; overflow: hidden; }
.ant-table th, .ant-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--text-color, #e0e0e0); }
.ant-table th { background: var(--primary-color, #d4af37); color: white; font-weight: 600; }
.ant-table tr:hover td { background-color: rgba(255,255,255,0.05); }
.ant-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('../images/hero-bg1.jpg') center/cover no-repeat; color: white; }
.ant-image-wrapper img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* Ghent (.ghe-) Styles */
.ghe-hero { padding: 160px 20px; text-align: center; color: white; }
.ghe-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.ghe-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.ghe-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.ghe-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.ghe-inner { max-width: 1200px; margin: 0 auto; }
.ghe-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.ghe-text-block { margin-bottom: 40px; }
.ghe-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.ghe-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.ghe-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.ghe-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .ghe-grid { grid-template-columns: 1fr 1fr; } 
    .ghe-grid-cards { grid-template-columns: 1fr 1fr; }
}
@media(min-width:1024px){ 
    .ghe-grid-cards { grid-template-columns: repeat(2, 1fr); }
}
.ghe-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.ghe-card:hover { transform: translateY(-5px); }
.ghe-card img { width: 100%; height: 250px; object-fit: cover; }
.ghe-card-content { padding: 25px; }
.ghe-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.ghe-list { list-style: none; padding: 0; }
.ghe-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.ghe-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.ghe-table-wrapper { overflow-x: auto; margin-top: 20px; width: 100%; display: block; }
.ghe-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.05); min-width: 600px; border-radius: 8px; overflow: hidden; }
.ghe-table th, .ghe-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--text-color, #e0e0e0); }
.ghe-table th { background: var(--primary-color, #d4af37); color: white; font-weight: 600; }
.ghe-table tr:hover td { background-color: rgba(255,255,255,0.05); }
.ghe-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('../images/hero-bg1.jpg') center/cover no-repeat; color: white; }
.ghe-image-wrapper img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* Liege (.lie-) Styles */
.lie-hero { padding: 160px 20px; text-align: center; color: white; }
.lie-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.lie-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.lie-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.lie-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.lie-inner { max-width: 1200px; margin: 0 auto; }
.lie-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.lie-text-block { margin-bottom: 40px; }
.lie-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.lie-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.lie-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.lie-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .lie-grid { grid-template-columns: 1fr 1fr; } 
    .lie-grid-cards { grid-template-columns: 1fr 1fr; }
}
@media(min-width:1024px){ 
    .lie-grid-cards { grid-template-columns: repeat(2, 1fr); }
}
.lie-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.lie-card:hover { transform: translateY(-5px); }
.lie-card img { width: 100%; height: 250px; object-fit: cover; }
.lie-card-content { padding: 25px; }
.lie-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.lie-list { list-style: none; padding: 0; }
.lie-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.lie-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.lie-table-wrapper { overflow-x: auto; margin-top: 20px; width: 100%; display: block; }
.lie-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.05); min-width: 600px; border-radius: 8px; overflow: hidden; }
.lie-table th, .lie-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--text-color, #e0e0e0); }
.lie-table th { background: var(--primary-color, #d4af37); color: white; font-weight: 600; }
.lie-table tr:hover td { background-color: rgba(255,255,255,0.05); }
.lie-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('../images/hero-bg1.jpg') center/cover no-repeat; color: white; }
.lie-image-wrapper img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* Netherlands (.nl-) Styles */
.nl-hero { padding: 160px 20px; text-align: center; color: white; }
.nl-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.nl-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.nl-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.nl-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.nl-inner { max-width: 1200px; margin: 0 auto; }
.nl-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.nl-text-block { margin-bottom: 40px; }
.nl-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.nl-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.nl-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.nl-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .nl-grid { grid-template-columns: 1fr 1fr; } 
    .nl-grid-cards { grid-template-columns: 1fr 1fr; }
}
@media(min-width:1024px){ 
    .nl-grid-cards { grid-template-columns: repeat(4, 1fr); }
}
.nl-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.nl-card:hover { transform: translateY(-5px); }
.nl-card img { width: 100%; height: 250px; object-fit: cover; }
.nl-card-content { padding: 25px; }
.nl-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.nl-list { list-style: none; padding: 0; }
.nl-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.nl-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.nl-table-wrapper { overflow-x: auto; margin-top: 20px; width: 100%; display: block; }
.nl-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.05); min-width: 600px; border-radius: 8px; overflow: hidden; }
.nl-table th, .nl-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--text-color, #e0e0e0); }
.nl-table th { background: var(--primary-color, #d4af37); color: white; font-weight: 600; }
.nl-table tr:hover td { background-color: rgba(255,255,255,0.05); }
.nl-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('images/hero-bg1.jpg') center/cover no-repeat; color: white; }
.nl-image-wrapper img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* Amsterdam (.ams-) Styles */
.ams-hero { padding: 160px 20px; text-align: center; color: white; }
.ams-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.ams-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.ams-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.ams-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.ams-inner { max-width: 1200px; margin: 0 auto; }
.ams-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.ams-text-block { margin-bottom: 40px; }
.ams-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.ams-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.ams-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.ams-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .ams-grid { grid-template-columns: 1fr 1fr; } 
    .ams-grid-cards { grid-template-columns: 1fr 1fr; }
}
@media(min-width:1024px){ 
    .ams-grid-cards { grid-template-columns: repeat(2, 1fr); }
}
.ams-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.ams-card:hover { transform: translateY(-5px); }
.ams-card img { width: 100%; height: 250px; object-fit: cover; }
.ams-card-content { padding: 25px; }
.ams-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.ams-list { list-style: none; padding: 0; }
.ams-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.ams-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.ams-table-wrapper { overflow-x: auto; margin-top: 20px; width: 100%; display: block; }
.ams-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.05); min-width: 600px; border-radius: 8px; overflow: hidden; }
.ams-table th, .ams-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--text-color, #e0e0e0); }
.ams-table th { background: var(--primary-color, #d4af37); color: white; font-weight: 600; }
.ams-table tr:hover td { background-color: rgba(255,255,255,0.05); }
.ams-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('../images/hero-bg1.jpg') center/cover no-repeat; color: white; }
.ams-image-wrapper img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* Rotterdam (.rot-) Styles */
.rot-hero { padding: 160px 20px; text-align: center; color: white; }
.rot-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.rot-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.rot-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.rot-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.rot-inner { max-width: 1200px; margin: 0 auto; }
.rot-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.rot-text-block { margin-bottom: 40px; }
.rot-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.rot-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.rot-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.rot-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .rot-grid { grid-template-columns: 1fr 1fr; } 
    .rot-grid-cards { grid-template-columns: 1fr 1fr; }
}
@media(min-width:1024px){ 
    .rot-grid-cards { grid-template-columns: repeat(2, 1fr); }
}
.rot-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.rot-card:hover { transform: translateY(-5px); }
.rot-card img { width: 100%; height: 250px; object-fit: cover; }
.rot-card-content { padding: 25px; }
.rot-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.rot-card-content p { color: var(--text-color, #e0e0e0); line-height: 1.6; }
.rot-list { list-style: none; padding: 0; }
.rot-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.rot-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.rot-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('../images/hero-bg1.jpg') center/cover no-repeat; color: white; }
.rot-image-wrapper img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* The Hague (.hag-) Styles */
.hag-hero { padding: 160px 20px; text-align: center; color: white; }
.hag-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.hag-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.hag-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.hag-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.hag-inner { max-width: 1200px; margin: 0 auto; }
.hag-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.hag-text-block { margin-bottom: 40px; }
.hag-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.hag-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.hag-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.hag-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .hag-grid { grid-template-columns: 1fr 1fr; } 
    .hag-grid-cards { grid-template-columns: 1fr 1fr; }
}
@media(min-width:1024px){ 
    .hag-grid-cards { grid-template-columns: repeat(2, 1fr); }
}
.hag-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.hag-card:hover { transform: translateY(-5px); }
.hag-card img { width: 100%; height: 250px; object-fit: cover; }
.hag-card-content { padding: 25px; }
.hag-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.hag-card-content p { color: var(--text-color, #e0e0e0); line-height: 1.6; }
.hag-list { list-style: none; padding: 0; }
.hag-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.hag-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.hag-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('../images/hero-bg1.jpg') center/cover no-repeat; color: white; }
.hag-image-wrapper img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* Utrecht (.utr-) Styles */
.utr-hero { padding: 160px 20px; text-align: center; color: white; }
.utr-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.utr-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.utr-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.utr-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.utr-inner { max-width: 1200px; margin: 0 auto; }
.utr-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.utr-text-block { margin-bottom: 40px; }
.utr-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.utr-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.utr-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.utr-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .utr-grid { grid-template-columns: 1fr 1fr; } 
    .utr-grid-cards { grid-template-columns: 1fr 1fr; }
}
@media(min-width:1024px){ 
    .utr-grid-cards { grid-template-columns: repeat(2, 1fr); }
}
.utr-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.utr-card:hover { transform: translateY(-5px); }
.utr-card img { width: 100%; height: 250px; object-fit: cover; }
.utr-card-content { padding: 25px; }
.utr-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.utr-card-content p { color: var(--text-color, #e0e0e0); line-height: 1.6; }
.utr-list { list-style: none; padding: 0; }
.utr-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.utr-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.utr-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('../images/hero-bg1.jpg') center/cover no-repeat; color: white; }
.utr-image-wrapper img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* Greece (.gr-) Styles */
.gr-hero { padding: 160px 20px; text-align: center; color: white; }
.gr-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.gr-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.gr-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.gr-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.gr-inner { max-width: 1200px; margin: 0 auto; }
.gr-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.gr-text-block { margin-bottom: 40px; }
.gr-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.gr-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.gr-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.gr-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .gr-grid { grid-template-columns: 1fr 1fr; } 
    .gr-grid-cards { grid-template-columns: 1fr 1fr; }
}
@media(min-width:1024px){ 
    .gr-grid-cards { grid-template-columns: repeat(2, 1fr); }
}
.gr-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.gr-card:hover { transform: translateY(-5px); }
.gr-card img { width: 100%; height: 250px; object-fit: cover; }
.gr-card-content { padding: 25px; }
.gr-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.gr-card-content p { color: var(--text-color, #e0e0e0); line-height: 1.6; }
.gr-list { list-style: none; padding: 0; }
.gr-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.gr-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.gr-table-wrapper { overflow-x: auto; margin-top: 20px; width: 100%; display: block; }
.gr-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.05); min-width: 600px; border-radius: 8px; overflow: hidden; }
.gr-table th, .gr-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--text-color, #e0e0e0); }
.gr-table th { background: var(--primary-color, #d4af37); color: white; font-weight: 600; }
.gr-table tr:hover td { background-color: rgba(255,255,255,0.05); }
.gr-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('images/hero-bg1.jpg') center/cover no-repeat; color: white; }
.gr-image-wrapper img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* Athens (.ath-) Styles */
.ath-hero { padding: 160px 20px; text-align: center; color: white; }
.ath-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.ath-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.ath-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.ath-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.ath-inner { max-width: 1200px; margin: 0 auto; }
.ath-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.ath-text-block { margin-bottom: 40px; }
.ath-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.ath-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.ath-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.ath-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .ath-grid { grid-template-columns: 1fr 1fr; } 
    .ath-grid-cards { grid-template-columns: 1fr 1fr; }
}
@media(min-width:1024px){ 
    .ath-grid-cards { grid-template-columns: repeat(3, 1fr); }
}
.ath-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.ath-card:hover { transform: translateY(-5px); }
.ath-card img { width: 100%; height: 250px; object-fit: cover; }
.ath-card-content { padding: 25px; }
.ath-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.ath-card-content p { color: var(--text-color, #e0e0e0); line-height: 1.6; }
.ath-list { list-style: none; padding: 0; }
.ath-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.ath-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.ath-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('../images/hero-bg1.jpg') center/cover no-repeat; color: white; }
.ath-image-wrapper img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* Thessaloniki (.the-) Styles */
.the-hero { padding: 160px 20px; text-align: center; color: white; }
.the-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.the-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.the-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.the-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.the-inner { max-width: 1200px; margin: 0 auto; }
.the-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.the-text-block { margin-bottom: 40px; }
.the-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.the-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.the-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.the-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .the-grid { grid-template-columns: 1fr 1fr; } 
    .the-grid-cards { grid-template-columns: 1fr 1fr; }
}
@media(min-width:1024px){ 
    .the-grid-cards { grid-template-columns: repeat(3, 1fr); }
}
.the-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.the-card:hover { transform: translateY(-5px); }
.the-card img { width: 100%; height: 250px; object-fit: cover; }
.the-card-content { padding: 25px; }
.the-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.the-card-content p { color: var(--text-color, #e0e0e0); line-height: 1.6; }
.the-list { list-style: none; padding: 0; }
.the-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.the-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.the-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('../images/hero-bg1.jpg') center/cover no-repeat; color: white; }
.the-image-wrapper img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* Santorini (.san-) Styles */
.san-hero { padding: 160px 20px; text-align: center; color: white; }
.san-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.san-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.san-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.san-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.san-inner { max-width: 1200px; margin: 0 auto; }
.san-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.san-text-block { margin-bottom: 40px; }
.san-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.san-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.san-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.san-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .san-grid { grid-template-columns: 1fr 1fr; } 
    .san-grid-cards { grid-template-columns: 1fr 1fr; }
}
@media(min-width:1024px){ 
    .san-grid-cards { grid-template-columns: repeat(3, 1fr); }
}
.san-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.san-card:hover { transform: translateY(-5px); }
.san-card img { width: 100%; height: 250px; object-fit: cover; }
.san-card-content { padding: 25px; }
.san-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.san-card-content p { color: var(--text-color, #e0e0e0); line-height: 1.6; }
.san-list { list-style: none; padding: 0; }
.san-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.san-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.san-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('../images/hero-bg1.jpg') center/cover no-repeat; color: white; }
.san-image-wrapper img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* Chania (.cha-) Styles */
.cha-hero { padding: 160px 20px; text-align: center; color: white; }
.cha-hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.cha-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.cha-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; color: var(--text-color, #e0e0e0); }
.cha-section-alt { background: rgba(255,255,255,0.05); padding: 80px 20px; color: var(--text-color, #e0e0e0); }
.cha-inner { max-width: 1200px; margin: 0 auto; }
.cha-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; }
.cha-text-block { margin-bottom: 40px; }
.cha-text-block h2 { font-size: 2rem; color: var(--primary-color, #d4af37); margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.cha-text-block p { font-size: 1.1rem; line-height: 1.8; color: var(--text-color, #e0e0e0); margin-bottom: 15px; }
.cha-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
.cha-grid-cards { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 0; }
@media(min-width:768px){ 
    .cha-grid { grid-template-columns: 1fr 1fr; } 
    .cha-grid-cards { grid-template-columns: 1fr 1fr; }
}
@media(min-width:1024px){ 
    .cha-grid-cards { grid-template-columns: repeat(3, 1fr); }
}
.cha-card { background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.cha-card:hover { transform: translateY(-5px); }
.cha-card img { width: 100%; height: 250px; object-fit: cover; }
.cha-card-content { padding: 25px; }
.cha-card-content h3 { color: var(--primary-color, #d4af37); margin-bottom: 15px; font-size: 1.4rem; }
.cha-card-content p { color: var(--text-color, #e0e0e0); line-height: 1.6; }
.cha-list { list-style: none; padding: 0; }
.cha-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: var(--text-color, #e0e0e0); line-height: 1.6; }
.cha-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); }
.cha-cta-section { text-align: center; padding: 80px 20px; background: linear-gradient(rgba(26, 10, 26, 0.8), rgba(26, 10, 26, 0.8)), url('../images/hero-bg1.jpg') center/cover no-repeat; color: white; }
.cha-image-wrapper img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* CH STYLES (.ch- prefix) */
.ch-main-content { font-family: 'Inter', sans-serif; color: var(--text-color, #e0e0e0); line-height: 1.6; background-color: var(--bg-color, #1a0a1a); }
.ch-main-content h1, .ch-main-content h2, .ch-main-content h3 { font-family: 'Playfair Display', serif; color: var(--primary-color, #d4af37); margin-bottom: 20px; }
.ch-section { padding: 80px 20px; }
.ch-bg-light { background-color: var(--bg-light, #2a112a); }
.ch-container { max-width: 1200px; margin: 0 auto; }
.ch-hero { position: relative; height: 60vh; min-height: 500px; background: url('images/hero-bg.jpg') center/cover no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; color: white; margin-top: 75px; }
.ch-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); }
.ch-hero-text { position: relative; z-index: 1; max-width: 800px; padding: 0 20px; }
.ch-hero-text h1 { color: white; font-size: 3rem; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.ch-hero-text p { font-size: 1.2rem; margin-bottom: 30px; }
.ch-btn { display: inline-block; padding: 15px 30px; background-color: var(--primary-color, #d4af37); color: var(--bg-color, #1a0a1a); text-decoration: none; font-weight: bold; border-radius: 5px; transition: background-color 0.3s; font-size: 1.1rem; }
.ch-btn:hover { background-color: #b5952f; }
.ch-btn-large { padding: 18px 40px; font-size: 1.2rem; }
.ch-text-image-block { display: flex; gap: 40px; align-items: center; }
.ch-text-image-block.reverse { flex-direction: row-reverse; }
.ch-text-content { flex: 1; }
.ch-text-content p { margin-bottom: 20px; font-size: 1.1rem; }
.ch-image-content { flex: 1; }
.ch-image-content img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.ch-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ch-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ch-card { background: var(--bg-light, #2a112a); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.3); transition: transform 0.3s; }
.ch-card:hover { transform: translateY(-5px); }
.ch-card img { width: 100%; height: 250px; object-fit: cover; }
.ch-card-content { padding: 25px; }
.ch-card-content h3 { color: var(--primary-color, #d4af37); font-size: 1.4rem; }
.ch-card-content p { color: var(--text-color, #e0e0e0); }
.ch-table-wrapper { overflow-x: auto; margin: 30px 0; }
.ch-table { width: 100%; border-collapse: collapse; background: var(--bg-light, #2a112a); box-shadow: 0 5px 15px rgba(0,0,0,0.3); color: var(--text-color, #e0e0e0); }
.ch-table th, .ch-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); }
.ch-table th { background-color: var(--bg-color, #1a0a1a); color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.ch-table tr:hover { background-color: rgba(255,255,255,0.05); }
.ch-list { list-style: none; padding: 0; }
.ch-list li { position: relative; padding-left: 30px; margin-bottom: 15px; font-size: 1.1rem; color: var(--text-color, #e0e0e0); }
.ch-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); font-weight: bold; }
.ch-cta-section { text-align: center; padding: 100px 20px; background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('images/hero-bg1.jpg') center/cover fixed; color: white; }
.ch-cta-section h2 { color: var(--primary-color, #d4af37); }
.ch-cta-section p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; }

@media (max-width: 992px) {
    .ch-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .ch-text-image-block, .ch-text-image-block.reverse { flex-direction: column; }
}
@media (max-width: 768px) {
    .ch-grid-3, .ch-grid-4 { grid-template-columns: 1fr; }
    .ch-hero-text h1 { font-size: 2.2rem; }
    .ch-section { padding: 50px 20px; }
}

/* ZURICH STYLES (.zur- prefix) */
.zur-main-content { font-family: 'Inter', sans-serif; color: var(--text-color, #e0e0e0); line-height: 1.6; background-color: var(--bg-color, #1a0a1a); }
.zur-main-content h1, .zur-main-content h2, .zur-main-content h3 { font-family: 'Playfair Display', serif; color: var(--primary-color, #d4af37); margin-bottom: 20px; }
.zur-section { padding: 80px 20px; }
.zur-bg-light { background-color: var(--bg-light, #2a112a); }
.zur-container { max-width: 1200px; margin: 0 auto; }
.zur-hero { position: relative; height: 60vh; min-height: 500px; background: url('../images/zurich.jpg') center/cover no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; color: white; margin-top: 75px; }
.zur-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); }
.zur-hero-text { position: relative; z-index: 1; max-width: 800px; padding: 0 20px; }
.zur-hero-text h1 { color: white; font-size: 3rem; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.zur-hero-text p { font-size: 1.2rem; margin-bottom: 30px; }
.zur-btn { display: inline-block; padding: 15px 30px; background-color: var(--primary-color, #d4af37); color: var(--bg-color, #1a0a1a); text-decoration: none; font-weight: bold; border-radius: 5px; transition: background-color 0.3s; font-size: 1.1rem; }
.zur-btn:hover { background-color: #b5952f; }
.zur-btn-large { padding: 18px 40px; font-size: 1.2rem; }
.zur-text-image-block { display: flex; gap: 40px; align-items: center; }
.zur-text-image-block.reverse { flex-direction: row-reverse; }
.zur-text-content { flex: 1; }
.zur-text-content p { margin-bottom: 20px; font-size: 1.1rem; }
.zur-image-content { flex: 1; }
.zur-image-content img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.zur-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.zur-card { background: var(--bg-light, #2a112a); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.3); transition: transform 0.3s; }
.zur-card:hover { transform: translateY(-5px); }
.zur-card img { width: 100%; height: 250px; object-fit: cover; }
.zur-card-content { padding: 25px; }
.zur-card-content h3 { color: var(--primary-color, #d4af37); font-size: 1.4rem; }
.zur-card-content p { color: var(--text-color, #e0e0e0); }
.zur-table-wrapper { overflow-x: auto; margin: 30px 0; }
.zur-table { width: 100%; border-collapse: collapse; background: var(--bg-light, #2a112a); box-shadow: 0 5px 15px rgba(0,0,0,0.3); color: var(--text-color, #e0e0e0); }
.zur-table th, .zur-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); }
.zur-table th { background-color: var(--bg-color, #1a0a1a); color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.zur-table tr:hover { background-color: rgba(255,255,255,0.05); }
.zur-list { list-style: none; padding: 0; }
.zur-list li { position: relative; padding-left: 30px; margin-bottom: 15px; font-size: 1.1rem; color: var(--text-color, #e0e0e0); }
.zur-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); font-weight: bold; }
.zur-cta-section { text-align: center; padding: 100px 20px; background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('../images/hero-bg1.jpg') center/cover fixed; color: white; }
.zur-cta-section h2 { color: var(--primary-color, #d4af37); }
.zur-cta-section p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; }

@media (max-width: 992px) {
    .zur-text-image-block, .zur-text-image-block.reverse { flex-direction: column; }
}
@media (max-width: 768px) {
    .zur-grid-3 { grid-template-columns: 1fr; }
    .zur-hero-text h1 { font-size: 2.2rem; }
    .zur-section { padding: 50px 20px; }
}

/* GENEVA STYLES (.gen- prefix) */
.gen-main-content { font-family: 'Inter', sans-serif; color: var(--text-color, #e0e0e0); line-height: 1.6; background-color: var(--bg-color, #1a0a1a); }
.gen-main-content h1, .gen-main-content h2, .gen-main-content h3 { font-family: 'Playfair Display', serif; color: var(--primary-color, #d4af37); margin-bottom: 20px; }
.gen-section { padding: 80px 20px; }
.gen-bg-light { background-color: var(--bg-light, #2a112a); }
.gen-container { max-width: 1200px; margin: 0 auto; }
.gen-hero { position: relative; height: 60vh; min-height: 500px; background: url('../images/geneva.jpg') center/cover no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; color: white; margin-top: 75px; }
.gen-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); }
.gen-hero-text { position: relative; z-index: 1; max-width: 800px; padding: 0 20px; }
.gen-hero-text h1 { color: white; font-size: 3rem; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.gen-hero-text p { font-size: 1.2rem; margin-bottom: 30px; }
.gen-btn { display: inline-block; padding: 15px 30px; background-color: var(--primary-color, #d4af37); color: var(--bg-color, #1a0a1a); text-decoration: none; font-weight: bold; border-radius: 5px; transition: background-color 0.3s; font-size: 1.1rem; }
.gen-btn:hover { background-color: #b5952f; }
.gen-btn-large { padding: 18px 40px; font-size: 1.2rem; }
.gen-text-image-block { display: flex; gap: 40px; align-items: center; }
.gen-text-image-block.reverse { flex-direction: row-reverse; }
.gen-text-content { flex: 1; }
.gen-text-content p { margin-bottom: 20px; font-size: 1.1rem; }
.gen-image-content { flex: 1; }
.gen-image-content img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.gen-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.gen-card { background: var(--bg-light, #2a112a); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.3); transition: transform 0.3s; }
.gen-card:hover { transform: translateY(-5px); }
.gen-card img { width: 100%; height: 250px; object-fit: cover; }
.gen-card-content { padding: 25px; }
.gen-card-content h3 { color: var(--primary-color, #d4af37); font-size: 1.4rem; }
.gen-card-content p { color: var(--text-color, #e0e0e0); }
.gen-table-wrapper { overflow-x: auto; margin: 30px 0; }
.gen-table { width: 100%; border-collapse: collapse; background: var(--bg-light, #2a112a); box-shadow: 0 5px 15px rgba(0,0,0,0.3); color: var(--text-color, #e0e0e0); }
.gen-table th, .gen-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); }
.gen-table th { background-color: var(--bg-color, #1a0a1a); color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.gen-table tr:hover { background-color: rgba(255,255,255,0.05); }
.gen-list { list-style: none; padding: 0; }
.gen-list li { position: relative; padding-left: 30px; margin-bottom: 15px; font-size: 1.1rem; color: var(--text-color, #e0e0e0); }
.gen-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); font-weight: bold; }
.gen-cta-section { text-align: center; padding: 100px 20px; background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('../images/hero-bg1.jpg') center/cover fixed; color: white; }
.gen-cta-section h2 { color: var(--primary-color, #d4af37); }
.gen-cta-section p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; }

@media (max-width: 992px) {
    .gen-text-image-block, .gen-text-image-block.reverse { flex-direction: column; }
}
@media (max-width: 768px) {
    .gen-grid-3 { grid-template-columns: 1fr; }
    .gen-hero-text h1 { font-size: 2.2rem; }
    .gen-section { padding: 50px 20px; }
}

/* BASEL STYLES (.bas- prefix) */
.bas-main-content { font-family: 'Inter', sans-serif; color: var(--text-color, #e0e0e0); line-height: 1.6; background-color: var(--bg-color, #1a0a1a); }
.bas-main-content h1, .bas-main-content h2, .bas-main-content h3 { font-family: 'Playfair Display', serif; color: var(--primary-color, #d4af37); margin-bottom: 20px; }
.bas-section { padding: 80px 20px; }
.bas-bg-light { background-color: var(--bg-light, #2a112a); }
.bas-container { max-width: 1200px; margin: 0 auto; }
.bas-hero { position: relative; height: 60vh; min-height: 500px; background: url('../images/basel.jpg') center/cover no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; color: white; margin-top: 75px; }
.bas-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); }
.bas-hero-text { position: relative; z-index: 1; max-width: 800px; padding: 0 20px; }
.bas-hero-text h1 { color: white; font-size: 3rem; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.bas-hero-text p { font-size: 1.2rem; margin-bottom: 30px; }
.bas-btn { display: inline-block; padding: 15px 30px; background-color: var(--primary-color, #d4af37); color: var(--bg-color, #1a0a1a); text-decoration: none; font-weight: bold; border-radius: 5px; transition: background-color 0.3s; font-size: 1.1rem; }
.bas-btn:hover { background-color: #b5952f; }
.bas-btn-large { padding: 18px 40px; font-size: 1.2rem; }
.bas-text-image-block { display: flex; gap: 40px; align-items: center; }
.bas-text-image-block.reverse { flex-direction: row-reverse; }
.bas-text-content { flex: 1; }
.bas-text-content p { margin-bottom: 20px; font-size: 1.1rem; }
.bas-image-content { flex: 1; }
.bas-image-content img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.bas-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.bas-card { background: var(--bg-light, #2a112a); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.3); transition: transform 0.3s; }
.bas-card:hover { transform: translateY(-5px); }
.bas-card img { width: 100%; height: 250px; object-fit: cover; }
.bas-card-content { padding: 25px; }
.bas-card-content h3 { color: var(--primary-color, #d4af37); font-size: 1.4rem; }
.bas-card-content p { color: var(--text-color, #e0e0e0); }
.bas-table-wrapper { overflow-x: auto; margin: 30px 0; }
.bas-table { width: 100%; border-collapse: collapse; background: var(--bg-light, #2a112a); box-shadow: 0 5px 15px rgba(0,0,0,0.3); color: var(--text-color, #e0e0e0); }
.bas-table th, .bas-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); }
.bas-table th { background-color: var(--bg-color, #1a0a1a); color: var(--primary-color, #d4af37); font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.bas-table tr:hover { background-color: rgba(255,255,255,0.05); }
.bas-list { list-style: none; padding: 0; }
.bas-list li { position: relative; padding-left: 30px; margin-bottom: 15px; font-size: 1.1rem; color: var(--text-color, #e0e0e0); }
.bas-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color, #d4af37); font-weight: bold; }
.bas-cta-section { text-align: center; padding: 100px 20px; background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('../images/hero-bg1.jpg') center/cover fixed; color: white; }
.bas-cta-section h2 { color: var(--primary-color, #d4af37); }
.bas-cta-section p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; }

@media (max-width: 992px) {
    .bas-text-image-block, .bas-text-image-block.reverse { flex-direction: column; }
}
@media (max-width: 768px) {
    .bas-grid-3 { grid-template-columns: 1fr; }
    .bas-hero-text h1 { font-size: 2.2rem; }
    .bas-section { padding: 50px 20px; }
}

/* ==========================================================================
   Lausanne Page Styles (Namespaced with .lau-)
   ========================================================================== */

.lau-main-content {
    font-family: 'Inter', sans-serif;
    color: var(--text-color, #f4f4f9);
    line-height: 1.6;
    background-color: var(--bg-color, #1a0a1a);
}

.lau-main-content h1, 
.lau-main-content h2, 
.lau-main-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color, #d4af37);
    margin-bottom: 20px;
}

.lau-btn {
    display: inline-block;
    background: var(--primary-color, #d4af37);
    color: #1a0a1a;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.lau-btn:hover {
    background: #f1c40f;
    transform: translateY(-2px);
}

.lau-btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.lau-hero {
    position: relative;
    background-image: url('images/ch1.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 75px; /* Account for fixed header */
}

.lau-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 10, 26, 0.7);
}

.lau-hero-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.lau-hero-text h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.lau-hero-text p {
    font-size: 1.2rem;
    color: #f4f4f9;
    margin-bottom: 30px;
}

/* Common Section Styles */
.lau-section {
    padding: 80px 20px;
}

.lau-bg-light {
    background-color: var(--card-bg, #2a1b2a);
}

.lau-container {
    max-width: 1200px;
    margin: 0 auto;
}

.lau-container p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Text and Image Blocks */
.lau-text-image-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.lau-text-image-block.reverse {
    flex-direction: row-reverse;
}

.lau-text-content {
    flex: 1;
}

.lau-image-content {
    flex: 1;
}

.lau-image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    display: block;
}

/* Grid Layouts */
.lau-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.lau-card {
    background: var(--bg-color, #1a0a1a);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.lau-card:hover {
    transform: translateY(-5px);
}

.lau-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.lau-card-content {
    padding: 20px;
}

.lau-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Table Styles */
.lau-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.lau-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-color, #1a0a1a);
    border-radius: 10px;
    overflow: hidden;
}

.lau-table th, .lau-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.lau-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color, #d4af37);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.lau-table tr:last-child td {
    border-bottom: none;
}

/* Lists */
.lau-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.lau-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.lau-list li::before {
    content: "•";
    color: var(--primary-color, #d4af37);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* CTA Section */
.lau-cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('images/hero-bg1.jpg') center/cover;
}

.lau-cta-section h2 {
    font-size: 2.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .lau-text-image-block, .lau-text-image-block.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .lau-grid-3 {
        grid-template-columns: 1fr;
    }
    .lau-hero-text h1 {
        font-size: 2.2rem;
    }
    .lau-section {
        padding: 50px 20px;
    }
}

/* ==========================================================================
   Latvia (lv) Page Styles (Namespaced with .lv-)
   ========================================================================== */

.lv-main-content {
    font-family: 'Inter', sans-serif;
    color: var(--text-color, #f4f4f9);
    line-height: 1.6;
    background-color: var(--bg-color, #1a0a1a);
}

.lv-main-content h1, 
.lv-main-content h2, 
.lv-main-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color, #d4af37);
    margin-bottom: 20px;
}

.lv-btn {
    display: inline-block;
    background: var(--primary-color, #d4af37);
    color: #1a0a1a;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.lv-btn:hover {
    background: #f1c40f;
    transform: translateY(-2px);
}

.lv-btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.lv-hero {
    position: relative;
    background-image: url('images/lv-hero.jpg'); /* You can change this if needed, using fallback */
    background-color: #2a1b2a;
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 75px;
}

.lv-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 10, 26, 0.7);
}

.lv-hero-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.lv-hero-text h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.lv-hero-text p {
    font-size: 1.2rem;
    color: #f4f4f9;
    margin-bottom: 30px;
}

/* Common Section Styles */
.lv-section {
    padding: 80px 20px;
}

.lv-bg-light {
    background-color: var(--card-bg, #2a1b2a);
}

.lv-container {
    max-width: 1200px;
    margin: 0 auto;
}

.lv-container p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Text and Image Blocks */
.lv-text-image-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.lv-text-image-block.reverse {
    flex-direction: row-reverse;
}

.lv-text-content {
    flex: 1;
}

.lv-image-content {
    flex: 1;
}

.lv-image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    display: block;
}

/* Grid Layouts */
.lv-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.lv-card {
    background: var(--bg-color, #1a0a1a);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.lv-card:hover {
    transform: translateY(-5px);
}

.lv-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.lv-card-content {
    padding: 20px;
}

.lv-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Table Styles */
.lv-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.lv-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-color, #1a0a1a);
    border-radius: 10px;
    overflow: hidden;
}

.lv-table th, .lv-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.lv-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color, #d4af37);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.lv-table tr:last-child td {
    border-bottom: none;
}

/* Lists */
.lv-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.lv-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.lv-list li::before {
    content: "•";
    color: var(--primary-color, #d4af37);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* FAQ Styles */
.lv-faq {
    margin-top: 30px;
}

.lv-faq h3 {
    font-size: 1.2rem;
    color: var(--primary-color, #d4af37);
    margin-top: 25px;
    margin-bottom: 10px;
}

.lv-faq p {
    color: #cccccc;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.lv-faq p:last-child {
    border-bottom: none;
}

/* CTA Section */
.lv-cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('images/hero-bg1.jpg') center/cover;
}

.lv-cta-section h2 {
    font-size: 2.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .lv-text-image-block, .lv-text-image-block.reverse {
        flex-direction: column;
    }
    .lv-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lv-grid-4 {
        grid-template-columns: 1fr;
    }
    .lv-hero-text h1 {
        font-size: 2.2rem;
    }
    .lv-section {
        padding: 50px 20px;
    }
}

/* ==========================================================================
   Daugavpils (lv/daugavpils.html) Page Styles (Namespaced with .dau-)
   ========================================================================== */

.dau-main-content {
    font-family: 'Inter', sans-serif;
    color: var(--text-color, #f4f4f9);
    line-height: 1.6;
    background-color: var(--bg-color, #1a0a1a);
}

.dau-main-content h1, 
.dau-main-content h2, 
.dau-main-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color, #d4af37);
    margin-bottom: 20px;
}

.dau-btn {
    display: inline-block;
    background: var(--primary-color, #d4af37);
    color: #1a0a1a;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.dau-btn:hover {
    background: #f1c40f;
    transform: translateY(-2px);
}

.dau-btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.dau-hero {
    position: relative;
    background-image: url('../images/city2.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 75px;
}

.dau-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 10, 26, 0.7);
}

.dau-hero-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.dau-hero-text h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.dau-hero-text p {
    font-size: 1.2rem;
    color: #f4f4f9;
    margin-bottom: 30px;
}

/* Common Section Styles */
.dau-section {
    padding: 80px 20px;
}

.dau-bg-light {
    background-color: var(--card-bg, #2a1b2a);
}

.dau-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dau-container p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Text and Image Blocks */
.dau-text-image-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.dau-text-image-block.reverse {
    flex-direction: row-reverse;
}

.dau-text-content {
    flex: 1;
}

.dau-image-content {
    flex: 1;
}

.dau-image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    display: block;
}

/* Grid Layouts */
.dau-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.dau-card {
    background: var(--bg-color, #1a0a1a);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.dau-card:hover {
    transform: translateY(-5px);
}

.dau-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.dau-card-content {
    padding: 20px;
}

.dau-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Table Styles */
.dau-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.dau-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-color, #1a0a1a);
    border-radius: 10px;
    overflow: hidden;
}

.dau-table th, .dau-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dau-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color, #d4af37);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.dau-table tr:last-child td {
    border-bottom: none;
}

/* Lists */
.dau-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.dau-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.dau-list li::before {
    content: "•";
    color: var(--primary-color, #d4af37);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* CTA Section */
.dau-cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('../images/hero-bg1.jpg') center/cover;
}

.dau-cta-section h2 {
    font-size: 2.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .dau-text-image-block, .dau-text-image-block.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .dau-grid-3 {
        grid-template-columns: 1fr;
    }
    .dau-hero-text h1 {
        font-size: 2.2rem;
    }
    .dau-section {
        padding: 50px 20px;
    }
}

/* ==========================================================================
   Daugavpils (lv/daugavpils.html) Page Styles (Namespaced with .dau-)
   ========================================================================== */

.dau-main-content {
    font-family: 'Inter', sans-serif;
    color: var(--text-color, #f4f4f9);
    line-height: 1.6;
    background-color: var(--bg-color, #1a0a1a);
}

.dau-main-content h1, 
.dau-main-content h2, 
.dau-main-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color, #d4af37);
    margin-bottom: 20px;
}

.dau-btn {
    display: inline-block;
    background: var(--primary-color, #d4af37);
    color: #1a0a1a;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.dau-btn:hover {
    background: #f1c40f;
    transform: translateY(-2px);
}

.dau-btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.dau-hero {
    position: relative;
    background-image: url('../images/city2.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 75px;
}

.dau-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 10, 26, 0.7);
}

.dau-hero-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.dau-hero-text h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.dau-hero-text p {
    font-size: 1.2rem;
    color: #f4f4f9;
    margin-bottom: 30px;
}

/* Common Section Styles */
.dau-section {
    padding: 80px 20px;
}

.dau-bg-light {
    background-color: var(--card-bg, #2a1b2a);
}

.dau-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dau-container p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Text and Image Blocks */
.dau-text-image-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.dau-text-image-block.reverse {
    flex-direction: row-reverse;
}

.dau-text-content {
    flex: 1;
}

.dau-image-content {
    flex: 1;
}

.dau-image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    display: block;
}

/* Grid Layouts */
.dau-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.dau-card {
    background: var(--bg-color, #1a0a1a);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.dau-card:hover {
    transform: translateY(-5px);
}

.dau-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.dau-card-content {
    padding: 20px;
}

.dau-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Table Styles */
.dau-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.dau-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-color, #1a0a1a);
    border-radius: 10px;
    overflow: hidden;
}

.dau-table th, .dau-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dau-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color, #d4af37);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.dau-table tr:last-child td {
    border-bottom: none;
}

/* Lists */
.dau-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.dau-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.dau-list li::before {
    content: "•";
    color: var(--primary-color, #d4af37);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* CTA Section */
.dau-cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('../images/hero-bg1.jpg') center/cover;
}

.dau-cta-section h2 {
    font-size: 2.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .dau-text-image-block, .dau-text-image-block.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .dau-grid-3 {
        grid-template-columns: 1fr;
    }
    .dau-hero-text h1 {
        font-size: 2.2rem;
    }
    .dau-section {
        padding: 50px 20px;
    }
}

/* ==========================================================================
   Riga (lv/riga.html) Page Styles (Namespaced with .rig-)
   ========================================================================== */

.rig-main-content {
    font-family: 'Inter', sans-serif;
    color: var(--text-color, #f4f4f9);
    line-height: 1.6;
    background-color: var(--bg-color, #1a0a1a);
}

.rig-main-content h1, 
.rig-main-content h2, 
.rig-main-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color, #d4af37);
    margin-bottom: 20px;
}

.rig-btn {
    display: inline-block;
    background: var(--primary-color, #d4af37);
    color: #1a0a1a;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.rig-btn:hover {
    background: #f1c40f;
    transform: translateY(-2px);
}

.rig-btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.rig-hero {
    position: relative;
    background-image: url('../images/city1.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 75px;
}

.rig-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 10, 26, 0.7);
}

.rig-hero-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.rig-hero-text h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.rig-hero-text p {
    font-size: 1.2rem;
    color: #f4f4f9;
    margin-bottom: 30px;
}

/* Common Section Styles */
.rig-section {
    padding: 80px 20px;
}

.rig-bg-light {
    background-color: var(--card-bg, #2a1b2a);
}

.rig-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rig-container p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Text and Image Blocks */
.rig-text-image-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.rig-text-image-block.reverse {
    flex-direction: row-reverse;
}

.rig-text-content {
    flex: 1;
}

.rig-image-content {
    flex: 1;
}

.rig-image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    display: block;
}

/* Grid Layouts */
.rig-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.rig-card {
    background: var(--bg-color, #1a0a1a);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.rig-card:hover {
    transform: translateY(-5px);
}

.rig-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.rig-card-content {
    padding: 20px;
}

.rig-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Table Styles */
.rig-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.rig-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-color, #1a0a1a);
    border-radius: 10px;
    overflow: hidden;
}

.rig-table th, .rig-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.rig-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color, #d4af37);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.rig-table tr:last-child td {
    border-bottom: none;
}

/* Lists */
.rig-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.rig-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.rig-list li::before {
    content: "•";
    color: var(--primary-color, #d4af37);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* CTA Section */
.rig-cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('../images/hero-bg1.jpg') center/cover;
}

.rig-cta-section h2 {
    font-size: 2.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .rig-text-image-block, .rig-text-image-block.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .rig-grid-3 {
        grid-template-columns: 1fr;
    }
    .rig-hero-text h1 {
        font-size: 2.2rem;
    }
    .rig-section {
        padding: 50px 20px;
    }
}

/* ==========================================================================
   Riga (lv/riga.html) Page Styles (Namespaced with .rig-)
   ========================================================================== */

.rig-main-content {
    font-family: 'Inter', sans-serif;
    color: var(--text-color, #f4f4f9);
    line-height: 1.6;
    background-color: var(--bg-color, #1a0a1a);
}

.rig-main-content h1, 
.rig-main-content h2, 
.rig-main-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color, #d4af37);
    margin-bottom: 20px;
}

.rig-btn {
    display: inline-block;
    background: var(--primary-color, #d4af37);
    color: #1a0a1a;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.rig-btn:hover {
    background: #f1c40f;
    transform: translateY(-2px);
}

.rig-btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.rig-hero {
    position: relative;
    background-image: url('../images/city1.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 75px;
}

.rig-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 10, 26, 0.7);
}

.rig-hero-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.rig-hero-text h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.rig-hero-text p {
    font-size: 1.2rem;
    color: #f4f4f9;
    margin-bottom: 30px;
}

/* Common Section Styles */
.rig-section {
    padding: 80px 20px;
}

.rig-bg-light {
    background-color: var(--card-bg, #2a1b2a);
}

.rig-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rig-container p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Text and Image Blocks */
.rig-text-image-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.rig-text-image-block.reverse {
    flex-direction: row-reverse;
}

.rig-text-content {
    flex: 1;
}

.rig-image-content {
    flex: 1;
}

.rig-image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    display: block;
}

/* Grid Layouts */
.rig-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.rig-card {
    background: var(--bg-color, #1a0a1a);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.rig-card:hover {
    transform: translateY(-5px);
}

.rig-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.rig-card-content {
    padding: 20px;
}

.rig-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Table Styles */
.rig-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.rig-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-color, #1a0a1a);
    border-radius: 10px;
    overflow: hidden;
}

.rig-table th, .rig-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.rig-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color, #d4af37);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.rig-table tr:last-child td {
    border-bottom: none;
}

/* Lists */
.rig-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.rig-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.rig-list li::before {
    content: "•";
    color: var(--primary-color, #d4af37);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* CTA Section */
.rig-cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('../images/hero-bg1.jpg') center/cover;
}

.rig-cta-section h2 {
    font-size: 2.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .rig-text-image-block, .rig-text-image-block.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .rig-grid-3 {
        grid-template-columns: 1fr;
    }
    .rig-hero-text h1 {
        font-size: 2.2rem;
    }
    .rig-section {
        padding: 50px 20px;
    }
}

/* ==========================================================================
   Liepaja (lv/liepaja.html) Page Styles (Namespaced with .lie-)
   ========================================================================== */

.lie-main-content {
    font-family: 'Inter', sans-serif;
    color: var(--text-color, #f4f4f9);
    line-height: 1.6;
    background-color: var(--bg-color, #1a0a1a);
}

.lie-main-content h1, 
.lie-main-content h2, 
.lie-main-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color, #d4af37);
    margin-bottom: 20px;
}

.lie-btn {
    display: inline-block;
    background: var(--primary-color, #d4af37);
    color: #1a0a1a;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.lie-btn:hover {
    background: #f1c40f;
    transform: translateY(-2px);
}

.lie-btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.lie-hero {
    position: relative;
    background-image: url('../images/city3.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 75px;
}

.lie-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 10, 26, 0.7);
}

.lie-hero-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.lie-hero-text h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.lie-hero-text p {
    font-size: 1.2rem;
    color: #f4f4f9;
    margin-bottom: 30px;
}

/* Common Section Styles */
.lie-section {
    padding: 80px 20px;
}

.lie-bg-light {
    background-color: var(--card-bg, #2a1b2a);
}

.lie-container {
    max-width: 1200px;
    margin: 0 auto;
}

.lie-container p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Text and Image Blocks */
.lie-text-image-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.lie-text-image-block.reverse {
    flex-direction: row-reverse;
}

.lie-text-content {
    flex: 1;
}

.lie-image-content {
    flex: 1;
}

.lie-image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    display: block;
}

/* Grid Layouts */
.lie-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.lie-card {
    background: var(--bg-color, #1a0a1a);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.lie-card:hover {
    transform: translateY(-5px);
}

.lie-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.lie-card-content {
    padding: 20px;
}

.lie-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Table Styles */
.lie-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.lie-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-color, #1a0a1a);
    border-radius: 10px;
    overflow: hidden;
}

.lie-table th, .lie-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.lie-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color, #d4af37);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.lie-table tr:last-child td {
    border-bottom: none;
}

/* Lists */
.lie-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.lie-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.lie-list li::before {
    content: "•";
    color: var(--primary-color, #d4af37);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* CTA Section */
.lie-cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('../images/hero-bg1.jpg') center/cover;
}

.lie-cta-section h2 {
    font-size: 2.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .lie-text-image-block, .lie-text-image-block.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .lie-grid-3 {
        grid-template-columns: 1fr;
    }
    .lie-hero-text h1 {
        font-size: 2.2rem;
    }
    .lie-section {
        padding: 50px 20px;
    }
}

/* ==========================================================================
   Jelgava (lv/jelgava.html) Page Styles (Namespaced with .jel-)
   ========================================================================== */

.jel-main-content {
    font-family: 'Inter', sans-serif;
    color: var(--text-color, #f4f4f9);
    line-height: 1.6;
    background-color: var(--bg-color, #1a0a1a);
}

.jel-main-content h1, 
.jel-main-content h2, 
.jel-main-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color, #d4af37);
    margin-bottom: 20px;
}

.jel-btn {
    display: inline-block;
    background: var(--primary-color, #d4af37);
    color: #1a0a1a;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.jel-btn:hover {
    background: #f1c40f;
    transform: translateY(-2px);
}

.jel-btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.jel-hero {
    position: relative;
    background-image: url('../images/city6.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 75px;
}

.jel-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 10, 26, 0.7);
}

.jel-hero-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.jel-hero-text h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.jel-hero-text p {
    font-size: 1.2rem;
    color: #f4f4f9;
    margin-bottom: 30px;
}

/* Common Section Styles */
.jel-section {
    padding: 80px 20px;
}

.jel-bg-light {
    background-color: var(--card-bg, #2a1b2a);
}

.jel-container {
    max-width: 1200px;
    margin: 0 auto;
}

.jel-container p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Text and Image Blocks */
.jel-text-image-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.jel-text-image-block.reverse {
    flex-direction: row-reverse;
}

.jel-text-content {
    flex: 1;
}

.jel-image-content {
    flex: 1;
}

.jel-image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    display: block;
}

/* Grid Layouts */
.jel-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.jel-card {
    background: var(--bg-color, #1a0a1a);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.jel-card:hover {
    transform: translateY(-5px);
}

.jel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.jel-card-content {
    padding: 20px;
}

.jel-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Table Styles */
.jel-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.jel-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-color, #1a0a1a);
    border-radius: 10px;
    overflow: hidden;
}

.jel-table th, .jel-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.jel-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color, #d4af37);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.jel-table tr:last-child td {
    border-bottom: none;
}

/* Lists */
.jel-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.jel-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.jel-list li::before {
    content: "•";
    color: var(--primary-color, #d4af37);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* CTA Section */
.jel-cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(26, 10, 26, 0.9), rgba(26, 10, 26, 0.9)), url('../images/hero-bg1.jpg') center/cover;
}

.jel-cta-section h2 {
    font-size: 2.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .jel-text-image-block, .jel-text-image-block.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .jel-grid-3 {
        grid-template-columns: 1fr;
    }
    .jel-hero-text h1 {
        font-size: 2.2rem;
    }
    .jel-section {
        padding: 50px 20px;
    }
}


/* ========================================================================== 
   Ireland (ie.html) Page Styles (Namespaced with .ie-)
   ========================================================================== */

.ie-main-content {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fcfcfc;
}

.ie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ie-section {
    padding: 80px 0;
}

.ie-bg-light {
    background-color: #f4f7f6;
}

/* Hero Section */
.ie-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('images/ie1.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.ie-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 30, 20, 0.65);
    z-index: 1;
}

.ie-hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.ie-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.ie-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Typography & General */
.ie-main-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a2a22;
    margin-bottom: 30px;
    text-align: center;
}

.ie-main-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2a4a32;
    margin-bottom: 20px;
}

.ie-main-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.ie-btn {
    display: inline-block;
    background-color: #d4af37;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
}

.ie-btn:hover {
    background-color: transparent;
    color: #d4af37;
}

.ie-btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Layout Blocks */
.ie-text-image-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.ie-text-image-block.reverse {
    flex-direction: row-reverse;
}

.ie-text-content {
    flex: 1;
}

.ie-image-content {
    flex: 1;
}

.ie-image-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.ie-image-content img:hover {
    transform: translateY(-5px);
}

.ie-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.ie-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-top: 4px solid #d4af37;
    transition: transform 0.3s ease;
}

.ie-card:hover {
    transform: translateY(-10px);
}

/* Table Styles */
.ie-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.ie-table {
    width: 100%;
    border-collapse: collapse;
}

.ie-table th, .ie-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.ie-table th {
    background-color: #1a2a22;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.ie-table tr:last-child td {
    border-bottom: none;
}

.ie-table tr:hover {
    background-color: #f9f9f9;
}

.ie-table a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
}

.ie-table a:hover {
    text-decoration: underline;
}

/* FAQ Styles */
.ie-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.ie-faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-left: 4px solid #1a2a22;
}

.ie-faq-item h4 {
    font-size: 1.3rem;
    color: #1a2a22;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.ie-faq-item p {
    margin-bottom: 0;
}

/* CTA Section */
.ie-cta {
    background: linear-gradient(135deg, #1a2a22 0%, #2a4a32 100%);
    padding: 80px 20px;
    color: #fff;
}

.ie-cta h2 {
    color: #fff;
}

.ie-cta p {
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .ie-text-image-block, .ie-text-image-block.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .ie-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .ie-hero-text h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .ie-hero-text h1 {
        font-size: 2.2rem;
    }
    
    .ie-main-content h2 {
        font-size: 2rem;
    }
    
    .ie-section {
        padding: 50px 0;
    }
}

/* ========================================================================== 
   Ireland (ie.html) Page Styles (Namespaced with .ie-)
   ========================================================================== */

.ie-main-content {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fcfcfc;
}

.ie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ie-section {
    padding: 80px 0;
}

.ie-bg-light {
    background-color: #f4f7f6;
}

/* Hero Section */
.ie-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('images/ie1.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.ie-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 30, 20, 0.65);
    z-index: 1;
}

.ie-hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.ie-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.ie-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Typography & General */
.ie-main-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a2a22;
    margin-bottom: 30px;
    text-align: center;
}

.ie-main-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2a4a32;
    margin-bottom: 20px;
}

.ie-main-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.ie-btn {
    display: inline-block;
    background-color: #d4af37;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
}

.ie-btn:hover {
    background-color: transparent;
    color: #d4af37;
}

.ie-btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Layout Blocks */
.ie-text-image-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.ie-text-image-block.reverse {
    flex-direction: row-reverse;
}

.ie-text-content {
    flex: 1;
}

.ie-image-content {
    flex: 1;
}

.ie-image-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.ie-image-content img:hover {
    transform: translateY(-5px);
}

.ie-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.ie-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-top: 4px solid #d4af37;
    transition: transform 0.3s ease;
}

.ie-card:hover {
    transform: translateY(-10px);
}

/* Table Styles */
.ie-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.ie-table {
    width: 100%;
    border-collapse: collapse;
}

.ie-table th, .ie-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.ie-table th {
    background-color: #1a2a22;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.ie-table tr:last-child td {
    border-bottom: none;
}

.ie-table tr:hover {
    background-color: #f9f9f9;
}

.ie-table a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
}

.ie-table a:hover {
    text-decoration: underline;
}

/* FAQ Styles */
.ie-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.ie-faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-left: 4px solid #1a2a22;
}

.ie-faq-item h4 {
    font-size: 1.3rem;
    color: #1a2a22;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.ie-faq-item p {
    margin-bottom: 0;
}

/* CTA Section */
.ie-cta {
    background: linear-gradient(135deg, #1a2a22 0%, #2a4a32 100%);
    padding: 80px 20px;
    color: #fff;
}

.ie-cta h2 {
    color: #fff;
}

.ie-cta p {
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .ie-text-image-block, .ie-text-image-block.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .ie-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .ie-hero-text h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .ie-hero-text h1 {
        font-size: 2.2rem;
    }
    
    .ie-main-content h2 {
        font-size: 2rem;
    }
    
    .ie-section {
        padding: 50px 0;
    }
}

/* ========================================================================== 
   Ireland (ie.html) Page Styles (Namespaced with .ie-)
   ========================================================================== */

.ie-main-content {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fcfcfc;
}

.ie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ie-section {
    padding: 80px 0;
}

.ie-bg-light {
    background-color: #f4f7f6;
}

/* Hero Section */
.ie-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('images/ie1.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.ie-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 30, 20, 0.65);
    z-index: 1;
}

.ie-hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.ie-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.ie-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Typography & General */
.ie-main-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a2a22;
    margin-bottom: 30px;
    text-align: center;
}

.ie-main-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2a4a32;
    margin-bottom: 20px;
}

.ie-main-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.ie-btn {
    display: inline-block;
    background-color: #d4af37;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
}

.ie-btn:hover {
    background-color: transparent;
    color: #d4af37;
}

.ie-btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Layout Blocks */
.ie-text-image-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.ie-text-image-block.reverse {
    flex-direction: row-reverse;
}

.ie-text-content {
    flex: 1;
}

.ie-image-content {
    flex: 1;
}

.ie-image-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.ie-image-content img:hover {
    transform: translateY(-5px);
}

.ie-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.ie-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-top: 4px solid #d4af37;
    transition: transform 0.3s ease;
}

.ie-card:hover {
    transform: translateY(-10px);
}

/* Table Styles */
.ie-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.ie-table {
    width: 100%;
    border-collapse: collapse;
}

.ie-table th, .ie-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.ie-table th {
    background-color: #1a2a22;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.ie-table tr:last-child td {
    border-bottom: none;
}

.ie-table tr:hover {
    background-color: #f9f9f9;
}

.ie-table a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
}

.ie-table a:hover {
    text-decoration: underline;
}

/* FAQ Styles */
.ie-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.ie-faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-left: 4px solid #1a2a22;
}

.ie-faq-item h4 {
    font-size: 1.3rem;
    color: #1a2a22;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.ie-faq-item p {
    margin-bottom: 0;
}

/* CTA Section */
.ie-cta {
    background: linear-gradient(135deg, #1a2a22 0%, #2a4a32 100%);
    padding: 80px 20px;
    color: #fff;
}

.ie-cta h2 {
    color: #fff;
}

.ie-cta p {
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .ie-text-image-block, .ie-text-image-block.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .ie-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .ie-hero-text h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .ie-hero-text h1 {
        font-size: 2.2rem;
    }
    
    .ie-main-content h2 {
        font-size: 2rem;
    }
    
    .ie-section {
        padding: 50px 0;
    }
}

/* ========================================================================== 
   Dublin (ie/dublin.html) Page Styles (Namespaced with .dub-)
   ========================================================================== */

.dub-main-content {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fdfdfd;
}

.dub-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dub-section {
    padding: 80px 0;
}

.dub-bg-light {
    background-color: #f4f6f8;
}

/* Hero Section */
.dub-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('../images/dublin.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.dub-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 25, 40, 0.7);
    z-index: 1;
}

.dub-hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.dub-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.dub-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Typography & General */
.dub-main-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a2a3a;
    margin-bottom: 30px;
    text-align: center;
}

.dub-main-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2a3a4a;
    margin-bottom: 20px;
}

.dub-main-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.dub-btn {
    display: inline-block;
    background-color: #d4af37;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
}

.dub-btn:hover {
    background-color: transparent;
    color: #d4af37;
}

.dub-btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Layout Blocks */
.dub-text-image-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.dub-text-image-block.reverse {
    flex-direction: row-reverse;
}

.dub-text-content {
    flex: 1;
}

.dub-image-content {
    flex: 1;
}

.dub-image-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.dub-image-content img:hover {
    transform: translateY(-5px);
}

.dub-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.dub-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.dub-card:hover {
    transform: translateY(-10px);
}

.dub-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.dub-card-content {
    padding: 25px;
}

.dub-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.dub-card-content p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Table Styles */
.dub-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.dub-table {
    width: 100%;
    border-collapse: collapse;
}

.dub-table th, .dub-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.dub-table th {
    background-color: #1a2a3a;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.dub-table tr:last-child td {
    border-bottom: none;
}

.dub-table tr:hover {
    background-color: #f9f9f9;
}

/* CTA Section */
.dub-cta {
    background: linear-gradient(135deg, #1a2a3a 0%, #2a3a4a 100%);
    padding: 80px 20px;
    color: #fff;
}

.dub-cta h2 {
    color: #fff;
}

.dub-cta p {
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .dub-text-image-block, .dub-text-image-block.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .dub-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dub-hero-text h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .dub-grid-3 {
        grid-template-columns: 1fr;
    }

    .dub-hero-text h1 {
        font-size: 2.2rem;
    }
    
    .dub-main-content h2 {
        font-size: 2rem;
    }
    
    .dub-section {
        padding: 50px 0;
    }
}

/* ========================================================================== 
   Dublin (ie/dublin.html) Page Styles (Namespaced with .dub-)
   ========================================================================== */

.dub-main-content {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fdfdfd;
}

.dub-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dub-section {
    padding: 80px 0;
}

.dub-bg-light {
    background-color: #f4f6f8;
}

/* Hero Section */
.dub-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('../images/dublin.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.dub-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 25, 40, 0.7);
    z-index: 1;
}

.dub-hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.dub-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.dub-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Typography & General */
.dub-main-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a2a3a;
    margin-bottom: 30px;
    text-align: center;
}

.dub-main-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2a3a4a;
    margin-bottom: 20px;
}

.dub-main-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.dub-btn {
    display: inline-block;
    background-color: #d4af37;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
}

.dub-btn:hover {
    background-color: transparent;
    color: #d4af37;
}

.dub-btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Layout Blocks */
.dub-text-image-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.dub-text-image-block.reverse {
    flex-direction: row-reverse;
}

.dub-text-content {
    flex: 1;
}

.dub-image-content {
    flex: 1;
}

.dub-image-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.dub-image-content img:hover {
    transform: translateY(-5px);
}

.dub-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.dub-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.dub-card:hover {
    transform: translateY(-10px);
}

.dub-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.dub-card-content {
    padding: 25px;
}

.dub-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.dub-card-content p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Table Styles */
.dub-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.dub-table {
    width: 100%;
    border-collapse: collapse;
}

.dub-table th, .dub-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.dub-table th {
    background-color: #1a2a3a;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.dub-table tr:last-child td {
    border-bottom: none;
}

.dub-table tr:hover {
    background-color: #f9f9f9;
}

/* CTA Section */
.dub-cta {
    background: linear-gradient(135deg, #1a2a3a 0%, #2a3a4a 100%);
    padding: 80px 20px;
    color: #fff;
}

.dub-cta h2 {
    color: #fff;
}

.dub-cta p {
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .dub-text-image-block, .dub-text-image-block.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .dub-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dub-hero-text h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .dub-grid-3 {
        grid-template-columns: 1fr;
    }

    .dub-hero-text h1 {
        font-size: 2.2rem;
    }
    
    .dub-main-content h2 {
        font-size: 2rem;
    }
    
    .dub-section {
        padding: 50px 0;
    }
}

/* ========================================================================== 
   Cork (ie/cork.html) Page Styles (Namespaced with .crk-)
   ========================================================================== */

.crk-main-content {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fafafa;
}

.crk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.crk-section {
    padding: 80px 0;
}

.crk-bg-light {
    background-color: #f0f4f2;
}

/* Hero Section */
.crk-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('../images/cork.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.crk-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20, 35, 30, 0.65);
    z-index: 1;
}

.crk-hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.crk-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.crk-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Typography & General */
.crk-main-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1b2f25;
    margin-bottom: 30px;
    text-align: center;
}

.crk-main-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2b4536;
    margin-bottom: 20px;
}

.crk-main-content p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

.crk-btn {
    display: inline-block;
    background-color: #c9a035;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #c9a035;
}

.crk-btn:hover {
    background-color: transparent;
    color: #c9a035;
}

.crk-btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Layout Blocks */
.crk-text-image-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.crk-text-image-block.reverse {
    flex-direction: row-reverse;
}

.crk-text-content {
    flex: 1;
}

.crk-image-content {
    flex: 1;
}

.crk-image-content img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.crk-image-content img:hover {
    transform: scale(1.02);
}

.crk-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.crk-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.crk-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border-top: 4px solid #c9a035;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.crk-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.crk-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Table Styles */
.crk-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.crk-table {
    width: 100%;
    border-collapse: collapse;
}

.crk-table th, .crk-table td {
    padding: 18px 25px;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
}

.crk-table th {
    background-color: #1b2f25;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.crk-table tr:last-child td {
    border-bottom: none;
}

.crk-table tr:hover {
    background-color: #f7f9f8;
}

/* CTA Section */
.crk-cta {
    background: linear-gradient(135deg, #1b2f25 0%, #2b4536 100%);
    padding: 80px 20px;
    color: #fff;
}

.crk-cta h2 {
    color: #fff;
}

.crk-cta p {
    color: #e5e5e5;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .crk-text-image-block, .crk-text-image-block.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .crk-grid-2, .crk-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .crk-hero-text h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .crk-hero-text h1 {
        font-size: 2.2rem;
    }
    
    .crk-main-content h2 {
        font-size: 2rem;
    }
    
    .crk-section {
        padding: 50px 0;
    }
}

/* ========================================================================== 
   Galway (ie/galway.html) Page Styles (Namespaced with .gal-)
   ========================================================================== */

.gal-main-content {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.65;
    background-color: #fbfbfb;
}

.gal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gal-section {
    padding: 85px 0;
}

.gal-bg-light {
    background-color: #f2f5f3;
}

/* Hero Section */
.gal-hero {
    position: relative;
    height: 75vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('../images/galway.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.gal-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(18, 30, 25, 0.7);
    z-index: 1;
}

.gal-hero-text {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.gal-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 2px 3px 6px rgba(0,0,0,0.6);
}

.gal-hero-text p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: #e8e8e8;
    line-height: 1.8;
}

/* Typography & General */
.gal-main-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: #1c3024;
    margin-bottom: 35px;
    text-align: center;
}

.gal-main-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: #2c4a37;
    margin-bottom: 20px;
}

.gal-main-content p {
    font-size: 1.12rem;
    color: #454545;
    margin-bottom: 25px;
    line-height: 1.85;
}

.gal-btn {
    display: inline-block;
    background-color: #c49a30;
    color: #fff;
    padding: 14px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: 2px solid #c49a30;
}

.gal-btn:hover {
    background-color: transparent;
    color: #c49a30;
}

.gal-btn-large {
    padding: 16px 45px;
    font-size: 1.25rem;
}

/* Layout Blocks */
.gal-text-image-block {
    display: flex;
    align-items: center;
    gap: 55px;
    margin-bottom: 70px;
}

.gal-text-image-block.reverse {
    flex-direction: row-reverse;
}

.gal-text-content {
    flex: 1;
}

.gal-image-content {
    flex: 1;
}

.gal-image-content img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

.gal-image-content img:hover {
    transform: scale(1.03);
}

.gal-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    margin-bottom: 45px;
}

.gal-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-top: 5px solid #c49a30;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.gal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.gal-card p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Table Styles */
.gal-table-wrapper {
    overflow-x: auto;
    margin: 45px 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

.gal-table {
    width: 100%;
    border-collapse: collapse;
}

.gal-table th, .gal-table td {
    padding: 20px 30px;
    text-align: left;
    border-bottom: 1px solid #eef0ef;
}

.gal-table th {
    background-color: #1c3024;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
}

.gal-table tr:last-child td {
    border-bottom: none;
}

.gal-table tr:hover {
    background-color: #f8faf9;
}

/* CTA Section */
.gal-cta {
    background: linear-gradient(145deg, #1c3024 0%, #2c4a37 100%);
    padding: 90px 20px;
    color: #fff;
}

.gal-cta h2 {
    color: #fff;
}

.gal-cta p {
    color: #eaeaea;
    max-width: 750px;
    margin: 0 auto 45px auto;
    font-size: 1.15rem;
}

.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .gal-text-image-block, .gal-text-image-block.reverse {
        flex-direction: column;
        gap: 35px;
    }
    
    .gal-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .gal-hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .gal-hero-text h1 {
        font-size: 2.3rem;
    }
    
    .gal-main-content h2 {
        font-size: 2.1rem;
    }
    
    .gal-section {
        padding: 55px 0;
    }
}

/* ========================================================================== 
   Galway (ie/galway.html) Page Styles (Namespaced with .gal-)
   ========================================================================== */

.gal-main-content {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.65;
    background-color: #fbfbfb;
}

.gal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gal-section {
    padding: 85px 0;
}

.gal-bg-light {
    background-color: #f2f5f3;
}

/* Hero Section */
.gal-hero {
    position: relative;
    height: 75vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('../images/galway.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.gal-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(18, 30, 25, 0.7);
    z-index: 1;
}

.gal-hero-text {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.gal-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 2px 3px 6px rgba(0,0,0,0.6);
}

.gal-hero-text p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: #e8e8e8;
    line-height: 1.8;
}

/* Typography & General */
.gal-main-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: #1c3024;
    margin-bottom: 35px;
    text-align: center;
}

.gal-main-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: #2c4a37;
    margin-bottom: 20px;
}

.gal-main-content p {
    font-size: 1.12rem;
    color: #454545;
    margin-bottom: 25px;
    line-height: 1.85;
}

.gal-btn {
    display: inline-block;
    background-color: #c49a30;
    color: #fff;
    padding: 14px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: 2px solid #c49a30;
}

.gal-btn:hover {
    background-color: transparent;
    color: #c49a30;
}

.gal-btn-large {
    padding: 16px 45px;
    font-size: 1.25rem;
}

/* Layout Blocks */
.gal-text-image-block {
    display: flex;
    align-items: center;
    gap: 55px;
    margin-bottom: 70px;
}

.gal-text-image-block.reverse {
    flex-direction: row-reverse;
}

.gal-text-content {
    flex: 1;
}

.gal-image-content {
    flex: 1;
}

.gal-image-content img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

.gal-image-content img:hover {
    transform: scale(1.03);
}

.gal-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    margin-bottom: 45px;
}

.gal-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-top: 5px solid #c49a30;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.gal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.gal-card p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Table Styles */
.gal-table-wrapper {
    overflow-x: auto;
    margin: 45px 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

.gal-table {
    width: 100%;
    border-collapse: collapse;
}

.gal-table th, .gal-table td {
    padding: 20px 30px;
    text-align: left;
    border-bottom: 1px solid #eef0ef;
}

.gal-table th {
    background-color: #1c3024;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
}

.gal-table tr:last-child td {
    border-bottom: none;
}

.gal-table tr:hover {
    background-color: #f8faf9;
}

/* CTA Section */
.gal-cta {
    background: linear-gradient(145deg, #1c3024 0%, #2c4a37 100%);
    padding: 90px 20px;
    color: #fff;
}

.gal-cta h2 {
    color: #fff;
}

.gal-cta p {
    color: #eaeaea;
    max-width: 750px;
    margin: 0 auto 45px auto;
    font-size: 1.15rem;
}

.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .gal-text-image-block, .gal-text-image-block.reverse {
        flex-direction: column;
        gap: 35px;
    }
    
    .gal-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .gal-hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .gal-hero-text h1 {
        font-size: 2.3rem;
    }
    
    .gal-main-content h2 {
        font-size: 2.1rem;
    }
    
    .gal-section {
        padding: 55px 0;
    }
}

/* ========================================================================== 
   Limerick (ie/limerick.html) Page Styles (Namespaced with .lim-)
   ========================================================================== */

.lim-main-content {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.7;
    background-color: #f8f9fa;
}

.lim-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lim-section {
    padding: 85px 0;
}

.lim-bg-light {
    background-color: #edf1f4;
}

/* Hero Section */
.lim-hero {
    position: relative;
    height: 75vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('../images/city6.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.lim-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20, 35, 45, 0.75);
    z-index: 1;
}

.lim-hero-text {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.lim-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 2px 3px 8px rgba(0,0,0,0.7);
}

.lim-hero-text p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: #e2e8f0;
    line-height: 1.8;
}

/* Typography & General */
.lim-main-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: #1e2b3c;
    margin-bottom: 35px;
    text-align: center;
}

.lim-main-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.lim-main-content p {
    font-size: 1.12rem;
    color: #4a5568;
    margin-bottom: 25px;
}

.lim-btn {
    display: inline-block;
    background-color: #b89030;
    color: #fff;
    padding: 14px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: 2px solid #b89030;
}

.lim-btn:hover {
    background-color: transparent;
    color: #b89030;
}

.lim-btn-large {
    padding: 16px 45px;
    font-size: 1.25rem;
}

/* Layout Blocks */
.lim-text-image-block {
    display: flex;
    align-items: center;
    gap: 55px;
    margin-bottom: 70px;
}

.lim-text-image-block.reverse {
    flex-direction: row-reverse;
}

.lim-text-content {
    flex: 1;
}

.lim-image-content {
    flex: 1;
}

.lim-image-content img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.lim-image-content img:hover {
    transform: scale(1.02);
}

.lim-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    margin-bottom: 45px;
}

.lim-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.lim-card {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    border-top: 5px solid #b89030;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lim-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.lim-card h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.lim-card p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* CTA Section */
.lim-cta {
    background: linear-gradient(145deg, #1e2b3c 0%, #2c3e50 100%);
    padding: 90px 20px;
    color: #fff;
}

.lim-cta h2 {
    color: #fff;
}

.lim-cta p {
    color: #cbd5e0;
    max-width: 750px;
    margin: 0 auto 45px auto;
    font-size: 1.15rem;
}

.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .lim-text-image-block, .lim-text-image-block.reverse {
        flex-direction: column;
        gap: 35px;
    }
    
    .lim-grid-2, .lim-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .lim-hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .lim-hero-text h1 {
        font-size: 2.3rem;
    }
    
    .lim-main-content h2 {
        font-size: 2.1rem;
    }
    
    .lim-section {
        padding: 55px 0;
    }
}

/* ========================================================================== 
   Limerick (ie/limerick.html) Page Styles (Namespaced with .lim-)
   ========================================================================== */

.lim-main-content {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.7;
    background-color: #f8f9fa;
}

.lim-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lim-section {
    padding: 85px 0;
}

.lim-bg-light {
    background-color: #edf1f4;
}

/* Hero Section */
.lim-hero {
    position: relative;
    height: 75vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('../images/city6.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.lim-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20, 35, 45, 0.75);
    z-index: 1;
}

.lim-hero-text {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.lim-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 2px 3px 8px rgba(0,0,0,0.7);
}

.lim-hero-text p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: #e2e8f0;
    line-height: 1.8;
}

/* Typography & General */
.lim-main-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: #1e2b3c;
    margin-bottom: 35px;
    text-align: center;
}

.lim-main-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.lim-main-content p {
    font-size: 1.12rem;
    color: #4a5568;
    margin-bottom: 25px;
}

.lim-btn {
    display: inline-block;
    background-color: #b89030;
    color: #fff;
    padding: 14px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: 2px solid #b89030;
}

.lim-btn:hover {
    background-color: transparent;
    color: #b89030;
}

.lim-btn-large {
    padding: 16px 45px;
    font-size: 1.25rem;
}

/* Layout Blocks */
.lim-text-image-block {
    display: flex;
    align-items: center;
    gap: 55px;
    margin-bottom: 70px;
}

.lim-text-image-block.reverse {
    flex-direction: row-reverse;
}

.lim-text-content {
    flex: 1;
}

.lim-image-content {
    flex: 1;
}

.lim-image-content img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.lim-image-content img:hover {
    transform: scale(1.02);
}

.lim-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    margin-bottom: 45px;
}

.lim-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.lim-card {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    border-top: 5px solid #b89030;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lim-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.lim-card h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.lim-card p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* CTA Section */
.lim-cta {
    background: linear-gradient(145deg, #1e2b3c 0%, #2c3e50 100%);
    padding: 90px 20px;
    color: #fff;
}

.lim-cta h2 {
    color: #fff;
}

.lim-cta p {
    color: #cbd5e0;
    max-width: 750px;
    margin: 0 auto 45px auto;
    font-size: 1.15rem;
}

.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .lim-text-image-block, .lim-text-image-block.reverse {
        flex-direction: column;
        gap: 35px;
    }
    
    .lim-grid-2, .lim-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .lim-hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .lim-hero-text h1 {
        font-size: 2.3rem;
    }
    
    .lim-main-content h2 {
        font-size: 2.1rem;
    }
    
    .lim-section {
        padding: 55px 0;
    }
}
