* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5490;
    --secondary-color: #2980b9;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

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

.pf-navigation {
    padding: 15px 0;
}

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

.pf-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pf-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.pf-brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pf-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

.pf-nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.pf-nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.pf-main-content {
    min-height: calc(100vh - 400px);
}

.pf-hero-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pf-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 Q25 25 50 50 T100 50" stroke="rgba(255,255,255,0.1)" fill="none"/></svg>');
    opacity: 0.3;
}

.pf-hero-overlay {
    position: relative;
    z-index: 1;
}

.pf-hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.pf-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.pf-cta-button-3d {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.pf-cta-button-3d:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.pf-button-front {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pf-quote-section {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

.pf-quote-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}

.pf-quote-icon {
    font-size: 3rem;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.pf-daily-quote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.pf-quote-author {
    display: block;
    text-align: right;
    font-weight: 600;
    font-size: 1rem;
}

.pf-intro-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.pf-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.pf-intro-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pf-intro-text p {
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.8;
}

.pf-stats-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

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

.pf-stat-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.pf-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pf-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pf-intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pf-services-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.pf-section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.pf-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pf-service-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
}

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

.pf-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pf-service-icon i {
    font-size: 2rem;
    color: white;
}

.pf-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pf-service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.pf-features-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.pf-features-list {
    max-width: 900px;
    margin: 0 auto;
}

.pf-feature-row {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.pf-feature-icon-box {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pf-feature-icon-box i {
    font-size: 1.8rem;
    color: white;
}

.pf-feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.pf-feature-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.pf-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

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

.pf-cta-box h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.pf-cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.pf-testimonials-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.pf-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pf-testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.pf-testimonial-stars {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.pf-testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.7;
}

.pf-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pf-testimonial-author strong {
    color: var(--primary-color);
}

.pf-testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pf-faq-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

.pf-faq-item {
    background: var(--bg-white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.pf-faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-white);
    transition: background 0.3s;
}

.pf-faq-question:hover {
    background: var(--bg-light);
}

.pf-faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.pf-faq-question i {
    transition: transform 0.3s;
    color: var(--primary-color);
}

.pf-faq-item.active .pf-faq-question i {
    transform: rotate(180deg);
}

.pf-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.pf-faq-item.active .pf-faq-answer {
    max-height: 500px;
    padding: 20px;
}

.pf-faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

.pf-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

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

.pf-footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.pf-footer-column p {
    color: #bdc3c7;
    line-height: 1.7;
}

.pf-footer-links {
    list-style: none;
}

.pf-footer-links li {
    margin-bottom: 12px;
}

.pf-footer-links li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.pf-footer-links li a:hover {
    color: var(--accent-color);
}

.pf-footer-contact {
    list-style: none;
}

.pf-footer-contact li {
    margin-bottom: 12px;
    color: #bdc3c7;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pf-footer-contact li i {
    color: var(--accent-color);
    margin-top: 3px;
}

.pf-footer-contact li a {
    color: #bdc3c7;
    text-decoration: none;
}

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

.pf-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    padding: 25px 20px;
    z-index: 10000;
    display: none;
}

.pf-cookie-banner.show {
    display: block;
}

.pf-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.pf-cookie-text h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pf-cookie-text p {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.pf-cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.pf-cookie-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.pf-cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.pf-cookie-accept {
    background-color: var(--success-color);
    color: white;
}

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

.pf-cookie-customize {
    background-color: var(--secondary-color);
    color: white;
}

.pf-cookie-customize:hover {
    background-color: var(--primary-color);
}

.pf-cookie-decline {
    background-color: var(--border-color);
    color: var(--text-dark);
}

.pf-cookie-decline:hover {
    background-color: #95a5a6;
}

.pf-page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.pf-page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.pf-blog-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.pf-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

.pf-blog-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.pf-blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.pf-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.pf-blog-card:hover .pf-blog-image img {
    transform: scale(1.05);
}

.pf-blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pf-blog-content {
    padding: 25px;
}

.pf-blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.pf-blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pf-blog-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.3;
}

.pf-blog-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.pf-read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.pf-read-more:hover {
    gap: 12px;
}

.pf-newsletter-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pf-newsletter-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pf-newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pf-newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.pf-newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.pf-newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.pf-newsletter-btn {
    padding: 15px 30px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.pf-newsletter-btn:hover {
    background: #e67e22;
}

.pf-about-intro {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.pf-about-content {
    max-width: 900px;
    margin: 0 auto;
}

.pf-about-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pf-about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

.pf-mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pf-value-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
}

.pf-value-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.pf-value-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pf-value-item p {
    color: var(--text-light);
}

.pf-team-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.pf-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pf-team-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.pf-team-image {
    height: 400px;
    overflow: hidden;
}

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

.pf-team-info {
    padding: 25px;
}

.pf-team-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.pf-team-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.pf-team-bio {
    color: var(--text-light);
    line-height: 1.7;
}

.pf-achievements-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.pf-achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pf-achievement-box {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.pf-achievement-box i {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.pf-achievement-box h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pf-achievement-box p {
    color: var(--text-light);
    line-height: 1.7;
}

.pf-approach-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.pf-approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.pf-approach-step {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.pf-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pf-step-details h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pf-step-details p {
    color: var(--text-light);
    line-height: 1.7;
}

.pf-cta-contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.pf-contact-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.pf-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.pf-contact-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pf-contact-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.pf-contact-details {
    margin-bottom: 40px;
}

.pf-contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.pf-contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pf-contact-icon i {
    color: white;
    font-size: 1.3rem;
}

.pf-contact-text h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.pf-contact-text p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.pf-contact-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.pf-contact-hours,
.pf-response-time {
    font-size: 0.9rem;
    font-style: italic;
}

.pf-office-hours {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.pf-office-hours h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pf-office-hours ul {
    list-style: none;
}

.pf-office-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.pf-office-hours ul li:last-child {
    border-bottom: none;
}

.pf-office-hours ul li strong {
    color: var(--text-dark);
}

.pf-contact-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.pf-contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.pf-form-group {
    margin-bottom: 25px;
}

.pf-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pf-form-group input,
.pf-form-group select,
.pf-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.pf-form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.pf-form-checkbox input {
    width: auto;
    margin-top: 3px;
}

.pf-form-checkbox label {
    font-weight: normal;
    font-size: 0.95rem;
    color: var(--text-light);
}

.pf-form-checkbox label a {
    color: var(--primary-color);
}

.pf-submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--success-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.pf-map-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.pf-map-container {
    max-width: 1200px;
    margin: 30px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.pf-faq-contact-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.pf-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.pf-success-modal.show {
    display: flex;
}

.pf-modal-content {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.pf-modal-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.pf-modal-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pf-modal-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.pf-modal-close {
    padding: 12px 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.pf-modal-close:hover {
    background: var(--secondary-color);
}

.pf-post-article {
    background-color: var(--bg-light);
}

.pf-post-container {
    max-width: 900px;
    padding: 80px 20px;
}

.pf-post-header {
    margin-bottom: 40px;
}

.pf-post-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pf-post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.pf-post-category {
    background: var(--accent-color);
    color: white !important;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.pf-post-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.pf-post-excerpt {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.pf-post-featured-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pf-post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pf-post-content {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    line-height: 1.9;
    color: var(--text-dark);
}

.pf-post-content h2 {
    font-size: 1.9rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.pf-post-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.pf-post-content p {
    margin-bottom: 20px;
}

.pf-post-content ul,
.pf-post-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.pf-post-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.pf-post-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.pf-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    flex-wrap: wrap;
    gap: 20px;
}

.pf-post-tags {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.pf-post-tags i {
    color: var(--primary-color);
}

.pf-tag {
    background: var(--bg-light);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.pf-post-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pf-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.pf-share-btn:hover {
    background: var(--secondary-color);
}

.pf-post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 20px;
    flex-wrap: wrap;
}

.pf-post-nav-link {
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.pf-post-nav-link:hover {
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .pf-mobile-toggle {
        display: block;
    }
    
    .pf-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        display: none;
    }
    
    .pf-nav-menu.active {
        display: flex;
    }
    
    .pf-hero-title {
        font-size: 2rem;
    }
    
    .pf-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .pf-intro-grid {
        grid-template-columns: 1fr;
    }
    
    .pf-stats-wrapper {
        flex-direction: column;
    }
    
    .pf-contact-layout {
        grid-template-columns: 1fr;
    }
    
    .pf-contact-form .pf-form-row {
        grid-template-columns: 1fr;
    }
    
    .pf-cookie-content {
        flex-direction: column;
    }
    
    .pf-cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .pf-newsletter-form {
        flex-direction: column;
    }
    
    .pf-post-content {
        padding: 30px 20px;
    }
    
    .pf-post-header h1 {
        font-size: 1.8rem;
    }
}

@media print {
    .pf-header,
    .pf-footer,
    .pf-cookie-banner,
    .pf-post-share,
    .pf-post-navigation {
        display: none;
    }
}