.page-header-orange-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.35), rgba(255, 107, 53, 0.15));
    z-index: 0;
    pointer-events: none;
}
.page-header-overlay {
    z-index: 1;
}
.page-header .container {
    position: relative;
    z-index: 2;
}
.hero-orange-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.35), rgba(255, 107, 53, 0.15));
    z-index: 0;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
}
/* Reset and base styles */
@font-face {
    font-family: 'Tilda Sans';
    src: url('../assets/fonts/TildaSans-Regular.woff2') format('woff2'),
         url('../assets/fonts/TildaSans-Regular.woff') format('woff'),
         url('../assets/fonts/TildaSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tilda Sans';
    src: url('../assets/fonts/TildaSans-Bold.woff2') format('woff2'),
         url('../assets/fonts/TildaSans-Bold.woff') format('woff'),
         url('../assets/fonts/TildaSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tilda Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.bronze-heading {
    color: #b87333 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Tilda Sans';
    font-weight: 700;
}

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

/* Colors based on logo */
:root {
    --primary-orange: #FF6B35;
    --dark-orange: #E55A2B;
    --light-orange: #FF8A65;
    --background-light: #FFF8F6;
    --text-dark: #2C2C2C;
    --text-light: #666;
.footer-info {
     display: flex;
     flex-direction: column;
     gap: 4px;
     margin-left: 10px;
     font-size: 1.05rem;
     color: var(--white);
     text-align: left;
}
    --border-color: #E0E0E0;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Header and Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-orange);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-menu img[alt="Тризуб"] {
    display: inline-block;
}

@media (max-width: 720px) {
    .nav-menu img[alt="Тризуб"] {
        display: none !important;
    }
}

@media (max-width: 800px) {
    .nav-menu img[alt="Тризуб"] {
        display: none !important;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--primary-orange);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-orange);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}


.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-slogan {
    font-size: 1.5rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Main sections */
main {
    margin-top: 80px;
}

section {
    padding: 4rem 0;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--white);
    text-align: center;
    padding: 7rem 0 6rem 0;
    position: relative;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.55);
    z-index: 1;
}


.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Private Bailiffs Section */
.private-bailiffs {
    background: var(--background-light);
}

.private-bailiffs h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 3rem;
}

.expandable-content {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.preview-text, .full-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.expandable-content .preview-text {
    margin-bottom: 0.1rem;
}

.full-text {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: var(--white);
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
}

.full-text.open {
    max-height: 5000px;
    opacity: 1;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.full-text ol, .full-text ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.full-text li {
    margin-bottom: 0.5rem;
}

.read-more-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    font-family: 'Tilda Sans';
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: var(--dark-orange);
}

/* Advantages Section */
.advantages {
    background: var(--white);
}

.advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 3rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.advantage-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
    border-color: var(--light-orange);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Registration Data Section */
.registration-data {
    background: var(--background-light);
}

.registration-data h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 3rem;
}

.registration-info {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.registration-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.bank-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.bank-details h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.bank-details p {
    background: var(--background-light);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    font-family: 'Tilda Sans';
}

/* FAQ Section */
.faq {
    background: var(--white);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 3rem;
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-item.active {
    border-color: var(--primary-orange);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background-light);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-orange);
    color: var(--white);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.faq-question:hover h3 {
    color: var(--white);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.faq-question:hover .faq-toggle {
    color: var(--white);
}

.faq-answer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0;
    padding-bottom: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer.open {
    max-height: 1000px;
    opacity: 1;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.faq-answer h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.faq-answer ol, .faq-answer ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* Links Page Styles */
.links-content {
    padding: 2rem 0;
}

.links-section {
    margin-bottom: 4rem;
}

.links-section h2 {
    color: var(--primary-orange);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.link-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-orange);
    color: var(--text-dark);
}

.link-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.link-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.link-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.link-item {
    display: block;
    background: var(--white);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-orange);
}

.link-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
    color: var(--text-dark);
}

.link-title {
    font-weight: 500;
    line-height: 1.6;
}

/* Documents Page Styles */
.documents-content {
    padding: 2rem 0;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.document-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
    border-color: var(--light-orange);
}

.document-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    object-fit: contain;
}

.document-content {
    flex: 1;
    text-align: left;
}

.document-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.document-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}
.document-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.file-type, .file-size {
    background: var(--background-light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.download-btn {
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
    cursor: pointer;
}

.download-btn:hover {
    background: var(--dark-orange);
}

.info-block {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
}

.info-block h2 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.info-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Publications Page Styles */
.publications-content {
    padding: 2rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
    border-color: var(--light-orange);
}

.article-card.placeholder {
    opacity: 0.6;
    cursor: default;
}

.article-card.placeholder:hover {
    transform: none;
    box-shadow: var(--shadow);
    border-color: transparent;
}

.article-image {
    height: 200px;
    overflow: hidden;
}

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

.placeholder-image {
    height: 100%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
}

.article-content {
    padding: 1.5rem;
}

.article-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.article-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.article-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Modal styles */
.modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1rem;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 10px 10px 0 0;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

.article-full-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.article-full-date {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.article-full h1 {
    color: var(--primary-orange);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.article-full-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-full-content p {
    margin-bottom: 1.5rem;
}

.article-full-content ol, .article-full-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.article-full-content li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-text {
    text-align: right;
}

.footer-text p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-bottom {
     width: 100%;
     text-align: center;
     margin-top: 2rem;
     font-size: 1rem;
     color: var(--text-light);
     opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero-slogan {
        font-size: 1.2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .advantages-grid,
    .links-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        width: 100%;
    }

    .footer-info {
        align-items: center;
        text-align: center;
        margin-left: 0;
    }

    .footer-text {
        text-align: center;
        width: 100%;
    }

    .nav-title {
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .modal-body {
        padding: 1rem;
    }

    .article-full h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 80vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero-slogan {
        font-size: 1rem;
    }

    .advantage-card,
    .link-card,
    .document-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .document-content {
        text-align: center;
        margin-bottom: 1rem;
    }

    .expandable-content,
    .registration-info {
        padding: 1.5rem;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }
}

/* Animation classes for scroll effects */
.animate {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contacts Page Styles */
.contacts-content {
    padding: 4rem 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-section,
.office-section {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-section h2,
.office-section h2 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info,
.office-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item,
.office-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    /* background: var(--white); */
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-item:hover,
.office-item:hover {
    transform: translateY(-2px);
}

.contact-icon,
.office-icon {
    font-size: 2rem;
    min-width: 3rem;
    text-align: center;
}

.contact-details h3,
.office-details h3 {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p,
.office-details p {
    margin: 0.25rem 0;
    color: var(--text-dark);
}

.contact-details a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--dark-orange);
    text-decoration: underline;
}

.map-section {
    margin-bottom: 0;
    margin-top: 0.5rem;
}

.map-section h2 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.map-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.contact-additional {
    margin-top: 3rem;
}

/* Payment page styles */
.payment-content {
    padding: 3rem 0;
    background-color: #ffffff;
}

.payment-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.payment-section {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
}

.payment-details-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 1.5rem;
}

.payment-details {
    flex: 1;
}

.account-info p {
    margin: 0.5rem 0;
    color: var(--text-dark);
    line-height: 1.5;
}

.account-info p:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-orange);
}

.payment-form {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pdf-download {
    text-align: center;
}

.pdf-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.pdf-link:hover {
    transform: translateY(-5px);
    color: var(--primary-orange);
}

.pdf-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.pdf-link:hover .pdf-icon {
    filter: brightness(1.1);
}

.pdf-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.online-banking-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.bank-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.bank-link {
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.bank-link:hover {
    transform: translateY(-8px) scale(1.05);
    filter: brightness(1.1);
}

.bank-icon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.bank-link:hover .bank-icon {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive styles for payment page */
@media (max-width: 768px) {
    .payment-section {
        padding: 1.5rem;
    }
    
    .payment-details-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .payment-form {
        justify-content: center;
        width: 100%;
    }
    
    .pdf-download {
        max-width: 200px;
        width: 100%;
    }
    
    .bank-icons {
        gap: 1.5rem;
    }
    
    .bank-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .payment-section {
        padding: 1rem;
        margin: 0 10px;
    }
    
    .payment-details-container {
        gap: 1rem;
    }
    
    .account-info p {
        font-size: 0.9rem;
        word-break: break-word;
    }
    
    .account-info p:first-child {
        font-size: 1rem;
    }
    
    .pdf-icon {
        width: 50px;
        height: 50px;
    }
    
    .pdf-label {
        font-size: 0.8rem;
    }
    
    .bank-icons {
        gap: 1rem;
    }
    
    .bank-icon {
        width: 60px;
        height: 60px;
    }
    
    .online-banking-section {
        padding: 1.5rem;
        margin: 0 10px;
    }
}

/* Responsive styles for contacts page */
@media (max-width: 768px) {
    .contacts-content .contacts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contacts-content .contact-section,
    .contacts-content .office-section {
        padding: 1.5rem;
    }
    
    .contacts-content .contact-item,
    .contacts-content .office-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contacts-content .contact-icon,
    .contacts-content .office-icon {
        min-width: auto;
    }
    
    .contacts-content .map-container iframe {
        height: 300px;
    }
}

/* Feedback Form Styles */
.feedback-section {
    background: #ffffff;
    border-radius: 0;
    padding: 2rem 0;
    margin: 3rem 0;
    box-shadow: none;
    border: none;
}

.contact-form-title {
    font-size: 2rem;
    color: #b87333;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Tilda Sans', sans-serif;
}

.feedback-form-container {
    max-width: 100%;
    margin: 0 auto;
}

.feedback-form {
    margin-top: 0;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.half-width {
    flex: 1;
    margin-bottom: 0;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 400;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-family: 'Tilda Sans', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Tilda Sans', sans-serif;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
    height: 50px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
    padding-top: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #999;
}

.submit-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Tilda Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    min-width: 280px;
    height: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background-color: #8b7d56;
    transform: none;
}

.submit-btn:active {
    background-color: #7a6e4a;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive styles for feedback form */
@media (max-width: 768px) {
    .contact-form-title {
        font-size: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group.half-width {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        height: 45px;
        padding: 0.8rem 1rem;
    }
    
    .form-group textarea {
        height: 120px;
    }
    
    .submit-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .feedback-section {
        padding: 1.5rem 0;
    }
    
    .contact-form-title {
        font-size: 1.3rem;
    }
    
    .form-row {
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .form-group input,
    .form-group textarea {
        height: 42px;
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        height: 100px;
    }
    
    .submit-btn {
        height: 45px;
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}