:root {
    --primary-color: #1a5490;
    --secondary-color: #2c7ac4;
    --accent-color: #d4af37;
    --dark-color: #1e1e1e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --transition: all 0.3s ease;
}

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

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

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

.fp-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.fp-brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.fp-nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.fp-nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.fp-hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fp-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.fp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.85), rgba(44, 122, 196, 0.75));
    z-index: 2;
}

.fp-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

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

.fp-hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.fp-hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.fp-hero-btn:hover {
    background: #c29d2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.fp-features-section,
.fp-services-section,
.fp-process-section,
.fp-testimonials-section,
.fp-faq-section {
    padding: 80px 0;
}

.fp-section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.fp-feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: var(--transition);
}

.fp-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.fp-feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.fp-feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.fp-feature-card p {
    color: #666;
    line-height: 1.6;
}

.fp-letter-section {
    background: var(--light-color);
    padding: 80px 0;
}

.fp-letter-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.fp-letter-header h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 32px;
}

.fp-letter-date {
    color: #888;
    font-style: italic;
    margin-bottom: 30px;
}

.fp-letter-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.fp-letter-list {
    margin: 20px 0 20px 30px;
}

.fp-letter-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.fp-letter-signature {
    margin-top: 40px;
    font-style: italic;
}

.fp-services-grid {
    display: grid;
    gap: 40px;
}

.fp-service-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.fp-service-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

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

.fp-service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fp-service-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.fp-service-price {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 20px;
    font-weight: 600;
}

.fp-process-section {
    background: var(--light-color);
}

.fp-process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.fp-process-step {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.fp-step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.fp-process-step h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

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

.fp-testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.fp-testimonial-stars {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.fp-testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.fp-testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.fp-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.fp-faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.fp-faq-question {
    padding: 20px;
    background: var(--light-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-color);
    font-size: 18px;
}

.fp-faq-answer {
    padding: 20px;
    line-height: 1.7;
}

.fp-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.fp-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.fp-cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.fp-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
}

.fp-cta-button:hover {
    background: #c29d2f;
    transform: scale(1.05);
}

.fp-footer {
    background: var(--dark-color);
    color: #fff;
    padding: 50px 0 20px;
}

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

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

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

.fp-footer-links li {
    margin-bottom: 10px;
}

.fp-footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

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

.fp-footer-reg {
    margin-top: 10px;
    font-size: 14px;
    color: #888;
}

.fp-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #888;
}

.fp-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.98);
    color: #fff;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
}

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

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

.fp-cookie-text h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.fp-cookie-link {
    color: var(--accent-color);
    text-decoration: underline;
}

.fp-cookie-buttons {
    display: flex;
    gap: 15px;
}

.fp-cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.fp-cookie-accept {
    background: var(--success-color);
    color: #fff;
}

.fp-cookie-accept:hover {
    background: #218838;
}

.fp-cookie-reject {
    background: #666;
    color: #fff;
}

.fp-cookie-reject:hover {
    background: #555;
}

.fp-about-hero,
.fp-blog-hero,
.fp-contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.fp-page-title {
    font-size: 42px;
    margin-bottom: 15px;
}

.fp-page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.fp-story-section,
.fp-mission-section,
.fp-approach-section {
    padding: 80px 0;
}

.fp-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.fp-story-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 32px;
}

.fp-story-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.fp-styled-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.fp-values-section {
    background: var(--light-color);
    padding: 80px 0;
}

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

.fp-value-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.fp-value-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.fp-value-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.fp-team-section {
    padding: 80px 0;
}

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

.fp-team-member {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.fp-team-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.fp-team-member h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
    font-size: 22px;
}

.fp-team-role {
    padding: 0 20px 15px;
    color: var(--accent-color);
    font-weight: 600;
}

.fp-team-bio {
    padding: 0 20px 30px;
    line-height: 1.7;
    color: #666;
}

.fp-mission-section {
    background: var(--light-color);
}

.fp-mission-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.fp-mission-content h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 36px;
}

.fp-mission-statement {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 50px;
    font-style: italic;
}

.fp-mission-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.fp-stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fp-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.fp-stat-label {
    font-size: 16px;
    color: #666;
}

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

.fp-approach-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.fp-approach-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.fp-approach-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.fp-blog-section {
    padding: 80px 0;
}

.fp-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.fp-blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

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

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

.fp-blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.fp-blog-card:hover .fp-blog-image {
    transform: scale(1.1);
}

.fp-blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

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

.fp-blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #888;
    font-size: 14px;
}

.fp-blog-content h2 a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 22px;
    line-height: 1.4;
    display: block;
    margin-bottom: 15px;
    transition: var(--transition);
}

.fp-blog-content h2 a:hover {
    color: var(--primary-color);
}

.fp-blog-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.fp-blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.fp-blog-link:hover {
    color: var(--secondary-color);
}

.fp-newsletter-section {
    background: var(--light-color);
    padding: 60px 0;
}

.fp-newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.fp-newsletter-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 32px;
}

.fp-newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.fp-newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
}

.fp-newsletter-btn {
    padding: 15px 30px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.fp-newsletter-btn:hover {
    background: var(--secondary-color);
}

.fp-contact-section {
    padding: 80px 0;
}

.fp-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.fp-contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 32px;
}

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

.fp-contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.fp-contact-details h3 {
    margin-bottom: 8px;
    color: var(--dark-color);
}

.fp-contact-details p,
.fp-contact-details a {
    color: #666;
    line-height: 1.7;
    text-decoration: none;
}

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

.fp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

.fp-submit-btn {
    padding: 15px 40px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.fp-submit-btn:hover {
    background: var(--secondary-color);
}

.fp-map-section {
    padding: 80px 0;
    background: var(--light-color);
}

.fp-map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.fp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.fp-modal.show {
    display: flex;
}

.fp-modal-content {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
}

.fp-modal-icon {
    font-size: 64px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.fp-modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.fp-modal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.fp-modal-btn {
    padding: 12px 30px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.fp-modal-btn:hover {
    background: var(--secondary-color);
}

.fp-post-article {
    padding-bottom: 80px;
}

.fp-post-header {
    background: var(--light-color);
    padding: 40px 0;
}

.fp-breadcrumb {
    margin-bottom: 20px;
    color: #666;
}

.fp-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.fp-post-title {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.fp-post-meta {
    display: flex;
    gap: 30px;
    color: #888;
}

.fp-post-featured-image {
    height: 500px;
    overflow: hidden;
}

.fp-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-post-content {
    padding: 60px 0;
}

.fp-post-content .fp-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.fp-post-body {
    max-width: 800px;
}

.fp-post-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.fp-post-body h2 {
    color: var(--primary-color);
    margin: 40px 0 20px;
    font-size: 32px;
}

.fp-post-body h3 {
    color: var(--dark-color);
    margin: 30px 0 15px;
    font-size: 24px;
}

.fp-post-body p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.fp-post-list {
    margin: 20px 0 20px 30px;
}

.fp-post-list li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.fp-post-cta {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
}

.fp-post-cta h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 28px;
}

.fp-post-cta p {
    margin-bottom: 25px;
}

.fp-sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.fp-sidebar-widget h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 22px;
}

.fp-recent-posts {
    list-style: none;
}

.fp-recent-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.fp-recent-posts li:last-child {
    border-bottom: none;
}

.fp-recent-posts a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.fp-recent-posts a:hover {
    color: var(--primary-color);
}

.fp-cta-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.fp-cta-widget h3 {
    color: #fff;
}

.fp-sidebar-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.fp-sidebar-btn:hover {
    background: #c29d2f;
}

@media (max-width: 768px) {
    .fp-nav-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .fp-hero-title {
        font-size: 32px;
    }
    
    .fp-hero-subtitle {
        font-size: 18px;
    }
    
    .fp-story-content,
    .fp-service-item,
    .fp-contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .fp-cookie-content {
        flex-direction: column;
    }
    
    .fp-post-content .fp-container {
        grid-template-columns: 1fr;
    }
}