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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
}

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

a {
    color: #2f855a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #276749;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2f855a;
}

/* Hero Section - Split Screen */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #2f855a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #276749;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47, 133, 90, 0.3);
}

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

.btn-secondary:hover {
    background: #2f855a;
    color: #ffffff;
}

.btn-primary-large {
    background: #2f855a;
    color: #ffffff;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-primary-large:hover {
    background: #276749;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(47, 133, 90, 0.35);
}

/* Split Sections */
.intro-split,
.process-split,
.portfolio-split,
.sustainability-split,
.about-intro-split,
.team-split,
.contact-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.intro-split.reverse,
.portfolio-split,
.sustainability-split.reverse,
.team-split.reverse {
    flex-direction: row-reverse;
}

.intro-content,
.process-content,
.portfolio-content,
.sustainability-content,
.about-content,
.team-content,
.contact-info {
    flex: 1;
    padding: 0 8% 0 5%;
}

.intro-split.reverse .intro-content,
.sustainability-split.reverse .sustainability-content,
.team-split.reverse .team-content {
    padding: 0 5% 0 8%;
}

.intro-image,
.process-image,
.portfolio-image,
.sustainability-image,
.about-image,
.team-image,
.contact-map {
    flex: 1;
    overflow: hidden;
}

.intro-image img,
.process-image img,
.portfolio-image img,
.sustainability-image img,
.about-image img,
.team-image img,
.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content h2,
.process-content h2,
.portfolio-content h2,
.sustainability-content h2,
.about-content h2,
.team-content h2,
.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

.intro-content p,
.process-content p,
.portfolio-content p,
.sustainability-content p,
.about-content p,
.team-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

/* Philosophy Section */
.philosophy {
    background: #f7fafc;
    padding: 5rem 5%;
}

.philosophy-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

.philosophy-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.philosophy-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2f855a;
}

.philosophy-card p {
    color: #4a5568;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2f855a;
    min-width: 60px;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.step p {
    color: #4a5568;
    margin: 0;
}

/* Services Section */
.services-main {
    padding: 5rem 5%;
    background: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.services-header p {
    font-size: 1.2rem;
    color: #718096;
}

.services-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem;
    background: #f7fafc;
    border-radius: 10px;
    border-left: 5px solid #2f855a;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-info {
    flex: 1;
    padding-right: 2rem;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.service-info p {
    color: #4a5568;
    line-height: 1.7;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2f855a;
}

.btn-select-service {
    background: #2f855a;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #276749;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials {
    background: #edf2f7;
    padding: 5rem 5%;
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

.testimonials-grid {
    display: flex;
    gap: 2.5rem;
}

.testimonial {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial p {
    font-size: 1.05rem;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    color: #2f855a;
    font-weight: 600;
}

/* Form Section */
.form-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.form-intro p {
    font-size: 1.1rem;
    color: #718096;
}

.order-form {
    background: #f7fafc;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

/* Sustainability List */
.sustainability-list {
    list-style: none;
    margin-top: 1.5rem;
}

.sustainability-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.sustainability-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2f855a;
    font-weight: 700;
}

/* CTA Sections */
.cta-final,
.cta-about,
.contact-cta,
.services-cta {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #2f855a 0%, #38a169 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #e6fffa;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Footer */
.main-footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 2rem;
    gap: 3rem;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #cbd5e0;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #68d391;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #e2e8f0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie:not(.btn-secondary) {
    background: #48bb78;
    color: #ffffff;
}

.btn-cookie:not(.btn-secondary):hover {
    background: #38a169;
}

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

.btn-cookie.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2f855a 0%, #38a169 100%);
    padding: 5rem 5%;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #e6fffa;
}

/* Values Section */
.values {
    padding: 5rem 5%;
    background: #ffffff;
}

.values-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #2f855a;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Approach Section */
.approach {
    padding: 5rem 5%;
    background: #edf2f7;
}

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

.approach h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a202c;
}

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

/* Projects Highlight */
.projects-highlight {
    padding: 5rem 5%;
    background: #ffffff;
}

.projects-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.projects-wrapper h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

.projects-list {
    display: flex;
    gap: 2rem;
}

.project-item {
    flex: 1;
    background: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.project-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.project-info p {
    color: #4a5568;
    line-height: 1.6;
}

/* Awards Section */
.awards {
    padding: 4rem 5%;
    background: #f7fafc;
}

.awards-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.awards h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

.awards-content ul {
    list-style: none;
}

.awards-content li {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    font-size: 1.05rem;
}

.awards-content li:last-child {
    border-bottom: none;
}

/* Services Detail */
.services-detail {
    padding: 4rem 5%;
}

.service-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 6rem;
    gap: 4rem;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-content li {
    color: #4a5568;
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.service-detail-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.service-detail-price {
    margin-top: 2rem;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #2f855a;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2f855a;
    display: block;
    margin-bottom: 0.75rem;
}

.price-note {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.services-cta {
    background: #edf2f7;
}

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

.services-cta-content h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2f855a;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-note {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #718096;
    font-style: italic;
}

.contact-map {
    position: relative;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    color: #ffffff;
}

.contact-approach {
    padding: 5rem 5%;
    background: #f7fafc;
}

.approach-steps-horizontal {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-step {
    flex: 1;
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #2f855a;
    color: #ffffff;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.approach-step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.approach-step p {
    color: #4a5568;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 5rem 5%;
    background: #ffffff;
}

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

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #2f855a;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #48bb78;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.thanks-main {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-info {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.thanks-info p {
    margin: 0;
    color: #2d3748;
    font-size: 1.05rem;
}

.thanks-details {
    background: #edf2f7;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.thanks-details ol {
    padding-left: 1.5rem;
}

.thanks-details li {
    color: #4a5568;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.thanks-contact {
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.thanks-contact p {
    color: #718096;
    margin-bottom: 0.5rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 5%;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.legal-intro {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2f855a;
}

.legal-content p {
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    color: #4a5568;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
    font-style: italic;
    color: #718096;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .process-split,
    .portfolio-split,
    .sustainability-split,
    .about-intro-split,
    .team-split,
    .service-detail-item,
    .contact-split {
        flex-direction: column;
    }

    .intro-content,
    .process-content,
    .portfolio-content,
    .sustainability-content,
    .about-content,
    .team-content,
    .service-detail-content,
    .contact-info {
        padding: 2rem 5%;
    }

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

    .philosophy-grid,
    .testimonials-grid,
    .projects-list,
    .values-grid,
    .approach-steps-horizontal {
        flex-direction: column;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price {
        align-items: flex-start;
        margin-top: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .intro-content h2,
    .philosophy h2,
    .testimonials h2 {
        font-size: 1.8rem;
    }

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

    .btn-primary,
    .btn-secondary,
    .btn-primary-large {
        display: block;
        width: 100%;
        text-align: center;
    }
}
