/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #42a4a9;
    --primary-dark: #069;
    --primary-light: #63bdc4;
    --secondary-color: #f4f4f6;
    --text-color: #000;
    --text-light: #777;
    --white: #fff;
    --accent: #e86000;
    --max-width: 1372.8px;
    --container-padding: 1.92%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 calc(var(--container-padding) * 2);
}

/* Top Bar */
.topbar {
    background-color: var(--primary-color);
    padding: 10px 0;
}

.topbar-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-menu li {
    margin: 0;
}

.topbar-menu a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    transition: opacity 0.3s;
}

.topbar-menu a:hover {
    opacity: 0.8;
}

.topbar-menu i {
    font-size: 18px;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    max-width: 200px;
    max-height: 50px;
    height: auto;
    width: auto;
    display: block;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    padding: 6px;
    transition: color 0.3s;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 6px;
    right: 6px;
    height: 2px;
    background-color: var(--primary-color);
}

.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.2);
    list-style: none;
    min-width: 248px;
    padding: 20px 0;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    padding: 14px 28px;
}

.submenu a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
}

.submenu a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 0 200px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 66.666%;
    margin-left: 2.88%;
}

.hero-content h1 {
    font-size: 55px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
}

.hero-content > p {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--white);
    color: var(--text-color);
    border-color: var(--text-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
    margin-top: 16px;
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
}

.btn-cta {
    background-color: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--white);
    padding: 14px 32px;
    font-size: 18px;
    margin-top: 30px;
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-footer {
    background-color: var(--primary-color);
    color: var(--white);
    margin-bottom: 16px;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-alt {
    background-color: var(--secondary-color);
}

.section-white {
    background-color: var(--white);
}

/* Welcome Section */
.welcome-section {
    padding: 60px 0;
}

.section-content {
    max-width: 100%;
}

.text-content h2 {
    font-size: 50px;
    line-height: 1.14;
    margin-bottom: 20px;
    color: var(--text-color);
}

.welcome-text {
    font-size: 24px;
    line-height: 1.48;
    letter-spacing: -0.01em;
}

.welcome-text p {
    margin-bottom: 20px;
    font-weight: 400;
}

.float-right {
    float: right;
    margin: 0 0 20px 20px;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.76%;
    align-items: center;
}

.two-column.reverse {
    grid-template-columns: 1fr 1fr;
}

.two-column.reverse .column-image {
    order: 2;
}

.two-column.reverse .column-text {
    order: 1;
}

.column-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.column-text h3 {
    font-size: 32px;
    line-height: 1.26;
    margin-bottom: 20px;
    color: var(--text-color);
}

.column-text p {
    font-size: 23px;
    line-height: 1.48;
    font-weight: 400;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    gap: 12.6px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.features-list i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 5px;
    flex-shrink: 0;
}

.features-list strong {
    display: block;
    margin-bottom: 8px;
}

.features-list p {
    margin: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    padding: 2% 0;
    color: var(--white);
}

.cta-content {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
}

.cta-content h3 {
    font-size: 23px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-content p {
    font-size: 23px;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Footer */
.footer {
    background-color: var(--white);
    padding: 5% 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about {
    grid-column: span 1;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    max-height: 45px;
    height: auto;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-column h4 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-color);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 20px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}


.contact-info p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.contact-info strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 600;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

.app-downloads img {
    max-width: 219px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--secondary-color);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 16px;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

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

/* Contact Page Section */
.contact-page-section {
    background-color: var(--white);
    padding: 80px 0;
}

.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.form-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.general-contact-form {
    width: 100%;
}

.contact-info-container {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 12px;
}

.contact-info-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.info-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.info-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.social-contact {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
}

.social-contact h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.business-hours {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
}

.business-hours h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--secondary-color);
    font-size: 16px;
}

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

.hours-list li span:first-child {
    font-weight: 600;
    color: var(--text-color);
}

.hours-list li span:last-child {
    color: var(--text-light);
}

/* Legal Content Section */
.legal-content-section {
    background-color: var(--white);
    padding: 60px 0;
}

.legal-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-color);
}

.last-updated {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
}

.last-updated p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.legal-intro {
    margin-bottom: 40px;
    font-size: 18px;
    color: var(--text-color);
}

.legal-intro p {
    margin-bottom: 15px;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

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

.legal-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 0;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 22px;
    color: var(--text-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-section p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-section li {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.7;
}

.legal-section li strong {
    color: var(--text-color);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-details {
    background-color: var(--secondary-color);
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

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

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details strong {
    color: var(--text-color);
    font-weight: 600;
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--secondary-color);
    text-align: center;
    font-style: italic;
    color: var(--text-light);
}

.legal-footer p {
    font-size: 16px;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--secondary-color);
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

.form-toggle-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-btn:hover {
    background-color: var(--primary-light);
    color: var(--white);
    border-color: var(--primary-light);
}

.toggle-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.toggle-btn i {
    font-size: 20px;
}

.contact-form-wrapper {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper.active {
    display: block;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
    background-color: var(--white);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.btn-submit i {
    font-size: 18px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 55px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 24px;
    line-height: 1.4;
    opacity: 0.95;
}

/* Mini Hero */
.mini-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 40px 0;
    text-align: center;
    color: var(--white);
}

.mini-hero h1 {
    font-size: 36px;
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
    padding: 80px 0;
}

.faq-title {
    font-size: 50px;
    line-height: 1.14;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
}

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

.faq-item {
    border-bottom: 1px solid var(--secondary-color);
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    transition: color 0.3s;
}

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

.faq-question h3 {
    font-size: 22px;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
    color: var(--text-color);
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 18px;
    color: var(--primary-color);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 0;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 0 25px 0;
}

.faq-answer p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 15px 0 15px 20px;
    padding-left: 20px;
}

.faq-answer li {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 10px;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-answer strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-content {
        max-width: 100%;
        margin-left: 0;
        padding: 0 20px;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .two-column.reverse .column-image,
    .two-column.reverse .column-text {
        order: initial;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-about {
        grid-column: span 2;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .page-header h1 {
        font-size: 42px;
    }

    .page-header p {
        font-size: 20px;
    }

    .mini-hero {
        padding: 35px 0;
    }

    .mini-hero h1 {
        font-size: 32px;
    }

    .legal-content-section {
        padding: 50px 0;
    }

    .legal-content-wrapper {
        padding: 0 20px;
    }

    .legal-section h2 {
        font-size: 24px;
    }

    .legal-section h3 {
        font-size: 20px;
    }

    .contact-page-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 768px) {
    .topbar-menu {
        justify-content: space-between;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        margin-top: 20px;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        margin-top: 10px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .faq-question h3 {
        font-size: 20px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 16px;
    }

    .hero {
        min-height: 500px;
        padding: 24px 0 100px;
    }

    .hero-content h1 {
        font-size: 36px;
        text-align: center;
    }

    .hero-content > p {
        font-size: 24px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .welcome-text {
        font-size: 20px;
    }

    .float-right {
        float: none;
        display: block;
        margin: 20px auto;
        max-width: 100%;
    }

    .text-content h2 {
        font-size: 36px;
        text-align: center;
    }

    .column-text h3 {
        font-size: 28px;
    }

    .column-text p {
        font-size: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-about {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content > p {
        font-size: 20px;
    }

    .btn {
        width: 100%;
        padding: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .text-content h2 {
        font-size: 28px;
    }

    .column-text h3 {
        font-size: 24px;
    }

    .column-text p {
        font-size: 18px;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .faq-question {
        padding: 20px 0;
    }

    .faq-question h3 {
        font-size: 18px;
        padding-right: 15px;
    }

    .faq-answer {
        padding: 0 0 20px 0;
    }

    .faq-item.active .faq-answer {
        padding: 0 0 20px 0;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 15px;
    }

    .contact-page-section {
        padding: 40px 0;
    }

    .contact-page-wrapper {
        gap: 30px;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 25px 15px;
    }

    .contact-form-section {
        padding: 40px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-header {
        padding: 60px 0 50px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 18px;
    }

    .mini-hero {
        padding: 30px 0;
    }

    .mini-hero h1 {
        font-size: 28px;
    }

    .legal-content-section {
        padding: 40px 0;
    }

    .legal-content-wrapper {
        padding: 0 15px;
    }

    .legal-section h2 {
        font-size: 22px;
    }

    .legal-section h3 {
        font-size: 18px;
    }

    .legal-section p,
    .legal-section li {
        font-size: 15px;
    }

    .legal-intro {
        font-size: 16px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .value-item h3 {
        font-size: 20px;
    }

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

    .section-subtitle {
        font-size: 16px;
    }

    .toggle-btn {
        padding: 12px 25px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 25px 15px;
    }
}
