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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333333;
    background: #ffffff;
}

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

/* Accent Color */
.accent {
    color: #FF6600;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
    text-decoration: none;
}

.logo a {
    text-decoration: none;
}

/* Navigation */
.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav a:hover,
.nav a.active {
    color: #FF6600;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6600;
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher select {
    padding: 0.5rem 1rem;
    border: 2px solid #FF6600;
    border-radius: 5px;
    background: white;
    color: #333333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-switcher select:hover {
    background: #FF6600;
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Flags Section */
.flags-section {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 1;
}

.flags {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.flag {
    width: 40px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.flags-text {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #FF6600;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FF6600;
    border: 2px solid #FF6600;
}

.btn-secondary:hover {
    background: #FF6600;
    color: white;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #FF6600, #e55a00);
    color: white;
    padding: 8rem 0 4rem 0;
    text-align: center;
    margin-top: 80px;
}

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

.page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Sections */
.personal-intro,
.services-preview,
.proof-capability,
.page-content {
    padding: 5rem 0;
}

.personal-intro {
    background: #f8f9fa;
}

.section-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333333;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666666;
}

/* Services Grid */
.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333333;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333333;
}

.service-card p {
    color: #666666;
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Proof of Capability */
.proof-capability {
    background: #f8f9fa;
}

.proof-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.proof-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333333;
}

.proof-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 2rem;
}

.proof-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.link-external {
    color: #FF6600;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-external:hover {
    color: #e55a00;
    text-decoration: underline;
}

.proof-image .factory-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
.content-section {
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.2rem;
    color: #666666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333333;
    text-align: center;
}

/* Advantage Grid */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #FF6600;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

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

.advantage-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333333;
}

.advantage-card p {
    color: #666666;
    line-height: 1.7;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333333;
}

.benefit-content p {
    color: #666666;
    line-height: 1.7;
}

/* Honest Section */
.honest-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid #FF6600;
}

.honest-content p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.challenge-solutions {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.challenge-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.challenge-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FF6600;
}

.challenge-item p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.honest-conclusion {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
    text-align: center;
    margin-top: 2rem;
}

/* Services Detailed */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.service-detailed {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-detailed:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.service-header {
    background: linear-gradient(135deg, #FF6600, #e55a00);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-icon-large {
    font-size: 3rem;
}

.service-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.service-content {
    padding: 2rem;
}

.service-content p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    color: #666666;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6600;
    font-weight: bold;
}

/* Process Steps */
.process-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FF6600;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333333;
}

.process-step p {
    color: #666666;
    line-height: 1.6;
}

/* About Page Styles */
.about-intro {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333333;
}

.title {
    font-size: 1.2rem;
    color: #FF6600;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.linkedin-section {
    margin-top: 2rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FF6600;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    color: #e55a00;
    transform: translateX(5px);
}

.linkedin-icon {
    font-size: 1.2rem;
}

/* Expertise Grid */
.expertise-section,
.languages-section {
    margin: 4rem 0;
}

.expertise-grid,
.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-item,
.language-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.expertise-item:hover,
.language-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.expertise-icon,
.flag-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.expertise-item h3,
.language-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333333;
}

.expertise-item p,
.language-item p {
    color: #666666;
    line-height: 1.6;
}

.languages-benefit {
    text-align: center;
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    margin-top: 2rem;
    font-style: italic;
}

/* Success Highlight */
.success-highlight {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 3rem;
    border-radius: 15px;
    margin: 4rem 0;
    border: 2px solid #FF6600;
}

.success-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.success-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333333;
}

.success-text p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.success-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6600;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
    margin-top: 0.5rem;
}

.success-result {
    font-weight: 600;
    color: #333333;
}

/* Approach Section */
.approach-section {
    margin: 4rem 0;
}

.approach-content {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #FF6600;
}

.approach-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.approach-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333333;
}

.approach-item p {
    color: #666666;
    line-height: 1.7;
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333333;
}

.contact-form-section p,
.contact-info-section p {
    color: #666666;
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

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

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

/* Contact Methods */
.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333333;
}

.contact-details a {
    color: #FF6600;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #e55a00;
    text-decoration: underline;
}

.contact-details p {
    color: #666666;
    font-size: 0.9rem;
    margin: 0.5rem 0 0 0;
}

/* Response Commitment */
.response-commitment,
.location-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid #FF6600;
}

.response-commitment h3,
.location-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333333;
}

.response-commitment p,
.location-info p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.contact-faq {
    margin-top: 4rem;
}

.contact-faq h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333333;
    text-align: center;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333333;
}

.faq-item p {
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #FF6600, #e55a00);
    border-radius: 15px;
    color: white;
    margin: 4rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn {
    background: white;
    color: #FF6600;
    font-weight: 700;
}

.cta-section .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333333;
    color: white;
    padding: 3rem 0 1rem 0;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FF6600;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #555555;
    padding-top: 2rem;
    text-align: center;
    color: #cccccc;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Header */
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .flags {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .flags-text {
        font-size: 0.9rem;
    }
    
    /* Page Header */
    .page-header {
        padding: 6rem 0 3rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* Grids */
    .services-grid,
    .advantage-grid,
    .expertise-grid,
    .languages-grid,
    .process-steps,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Proof Content */
    .proof-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* About Intro */
    .about-intro {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    /* Success Content */
    .success-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .success-stats {
        justify-content: center;
    }
    
    /* Contact Container */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Typography */
    .section-content h2,
    .content-section h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .section-content h2,
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .service-card,
    .advantage-card,
    .expertise-item,
    .language-item {
        padding: 1.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu-toggle,
    .language-switcher,
    .btn,
    .cta-section,
    .footer {
        display: none;
    }
    
    .hero {
        height: auto;
        color: #333333;
    }
    
    .hero-background,
    .hero-overlay {
        display: none;
    }
    
    .page-header {
        background: none;
        color: #333333;
        margin-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}
