/* CSS Variables */
:root {
    --bg-primary: #FFFFF0;
    --accent: #123249;
    --text-primary: #061222;
    --color-secondary: #447794;
    --color-tertiary: #2D5B75;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(18, 50, 73, 0.1);
    transition: var(--transition);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--color-secondary);
}

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

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--accent);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 180px 2rem 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--color-tertiary);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(18, 50, 73, 0.15);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(18, 50, 73, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(18, 50, 73, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Services Section */
.services {
    padding: 100px 2rem;
    background-color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-tertiary);
    margin-bottom: 4rem;
}

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

.service-card {
    padding: 2.5rem;
    background-color: var(--bg-primary);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(18, 50, 73, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 50, 73, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.service-card p {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Features Section */
.features {
    padding: 100px 2rem;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

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

.feature-reverse {
    direction: rtl;
}

.feature-reverse > * {
    direction: ltr;
}

.feature-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(18, 50, 73, 0.15);
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.feature-text p {
    font-size: 1.125rem;
    color: var(--color-tertiary);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
}

.feature-list i {
    color: var(--accent);
    font-size: 1.25rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 2rem;
    background-color: var(--white);
}

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

.testimonial-card {
    padding: 2.5rem;
    background-color: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid rgba(18, 50, 73, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(18, 50, 73, 0.1);
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    color: var(--accent);
}

.testimonial-author p {
    margin-bottom: 0;
    color: var(--color-tertiary);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 2rem;
    background-color: var(--accent);
    color: var(--white);
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--accent);
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background-color: var(--bg-primary);
    border-color: var(--bg-primary);
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--color-secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.hidden {
  display: none;
}

.legal-section {
  background-color: #1a1a1a; /* dunkler Hintergrund */
  color: #fff;
  padding: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #333;
}

.legal-section h3,
.legal-section h4 {
  color: #fff;
}

.legal-section p, 
.legal-section li {
  color: #ddd;
  line-height: 1.6;
}


/* Page Hero */
.page-hero {
    padding: 180px 2rem 80px;
    background-color: var(--white);
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-tertiary);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 2rem 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 3rem;
    border: 2px solid rgba(18, 50, 73, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(18, 50, 73, 0.15);
    border-color: var(--accent);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(18, 50, 73, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--accent);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.plan-description {
    color: var(--color-tertiary);
    margin-bottom: 0;
}

.pricing-price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--accent);
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
}

.period {
    font-size: 1rem;
    color: var(--color-tertiary);
    margin-left: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
}

.pricing-features li i {
    color: var(--accent);
    font-size: 1.125rem;
}

.pricing-features li.disabled {
    color: rgba(6, 18, 34, 0.4);
}

.pricing-features li.disabled i {
    color: rgba(18, 50, 73, 0.3);
}

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

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

.faq-item {
    border-bottom: 1px solid rgba(18, 50, 73, 0.1);
    padding: 1.5rem 0;
}

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

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

.faq-question h4 {
    margin: 0;
    font-size: 1.125rem;
}

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

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

.faq-answer p {
    color: var(--color-tertiary);
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 2rem 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-container {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(18, 50, 73, 0.1);
}

.contact-form-container h2 {
    margin-bottom: 2rem;
    color: var(--accent);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(18, 50, 73, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(18, 50, 73, 0.1);
}

.contact-info {
    padding: 2rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.contact-intro {
    color: var(--color-tertiary);
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.contact-item p {
    margin: 0;
    color: var(--color-tertiary);
}

.social-section {
    margin-top: 3rem;
}

.social-section h4 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

.map-section {
    height: 400px;
    margin-bottom: 0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
}

/* About Page */
.founder-section {
    padding: 80px 2rem 100px;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.founder-image-container {
    position: sticky;
    top: 120px;
}

.founder-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(18, 50, 73, 0.15);
}

.founder-text h2 {
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.founder-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.founder-title {
    font-size: 1.125rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.founder-bio {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-tertiary);
    margin-bottom: 1.5rem;
}

.founder-quote {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    margin-top: 2rem;
    position: relative;
}

.founder-quote .quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.2;
}

.founder-quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    margin: 0;
    padding-left: 2rem;
}

/* Mission Section */
.mission-section {
    padding: 100px 2rem;
    background-color: var(--white);
}

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

.mission-card {
    padding: 2.5rem;
    background-color: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid rgba(18, 50, 73, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 50, 73, 0.1);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.mission-card h3 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.mission-card p {
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 2rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent);
}

.timeline-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    width: 15px;
    height: 15px;
    background-color: var(--accent);
    border-radius: 50%;
    transform: translateX(-6px);
    z-index: 1;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--color-tertiary);
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: 100px 2rem;
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    padding: 2rem;
    background-color: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid rgba(18, 50, 73, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-tertiary);
    font-size: 1rem;
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
    }
    
    .founder-image-container {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 240, 0.98);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(18, 50, 73, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .services-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 2rem;
    }
    
    .timeline-item::before {
        left: 0;
    }
    
    .timeline-year {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 140px 1rem 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
    }
    
    .service-card,
    .testimonial-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}
