/* Main CSS for Growth Coaching Website */

/* Base styles and resets */
:root {
    --primary-color: #3a7bd5;
    --secondary-color: #00d2ff;
    --accent-color: #ff6b6b;
    --dark-color: #2c3e50;
    --light-color: #f9f9f9;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 6px;
    --transition: all 0.3s ease;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

* {
    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: var(--white);
    overflow-x: hidden;
    text-align: center;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 28px;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Header */
header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    padding-bottom: 5px;
    position: relative;
}

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

nav ul li a.active::after,
nav ul li a:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease;
}

nav ul li a::after {
    transform: scaleX(0);
}

.language-switch {
    margin-left: 25px;
}

.language-switch button {
    background: var(--light-color);
    border: none;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.language-switch button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    background: var(--gradient);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Page Banner (for internal pages) */
.page-banner {
    background: var(--gradient);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: 15px;
}

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

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background: var(--light-color);
}

.about-preview .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-icon svg {
    width: 50px;
    height: 50px;
}

.services-cta {
    margin-top: 50px;
    text-align: center;
}

/* Testimonials */
.testimonials {
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 0;
}

.testimonials h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none; /* For Firefox */
}

.testimonials-slider::-webkit-scrollbar {
    display: none; /* For Chrome, Safari and Opera */
}

.testimonial {
    flex: 0 0 calc(50% - 15px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.client-details h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.client-details p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Latest Blogs */
.latest-blogs {
    padding: 80px 0;
}

.blog-previews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.blog-cta {
    margin-top: 50px;
    text-align: center;
}

/* Call to Action Section */
.cta-section {
    background: var(--gradient);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
}

/* About Page Specific */
.about-mission,
.our-story {
    padding: 80px 0;
}

.about-mission .container,
.our-story .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mission-content,
.story-content {
    flex: 1;
}

.mission-image,
.story-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.our-story {
    background: var(--light-color);
}

.our-story .container {
    flex-direction: row-reverse;
}

.our-approach {
    padding: 80px 0;
}

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

.approach-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.approach-card:hover {
    transform: translateY(-10px);
}

.approach-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.approach-icon svg {
    width: 50px;
    height: 50px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--light-color);
}

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

.team-member {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 5px;
}

.team-member p {
    color: var(--text-light);
    padding: 0 20px;
    margin-bottom: 20px;
}

.team-member p:nth-of-type(1) {
    font-weight: 600;
    color: var(--primary-color);
}

/* Credentials Section */
.credentials {
    padding: 80px 0;
}

.credentials-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.credential-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.credential-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.credential-icon svg {
    width: 50px;
    height: 50px;
}

/* Services Page Specific */
.services-intro {
    padding: 80px 0;
    background: var(--light-color);
}

.process-steps {
    margin-top: 50px;
}

.process-step {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    background: var(--gradient);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 10px;
}

.service-category {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 80px 0;
}

.service-category.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.service-details {
    flex: 1;
}

.service-features {
    margin: 20px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.service-features li svg {
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.service-package {
    background: var(--light-color);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    font-weight: 600;
}

.service-package p {
    margin-bottom: 0;
}

.coaching-formats {
    padding: 80px 0;
    background: var(--light-color);
}

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

.format-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.format-card:hover {
    transform: translateY(-10px);
}

.format-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.format-icon svg {
    width: 50px;
    height: 50px;
}

/* Pricing Overview */
.pricing-overview {
    padding: 80px 0;
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.pricing-feature {
    display: flex;
    align-items: center;
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.feature-icon {
    color: var(--primary-color);
    margin-right: 15px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.pricing-feature p {
    margin-bottom: 0;
}

.pricing-contact {
    text-align: center;
    margin-top: 50px;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-color);
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 30px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Blog Page Specific */
.blog-content {
    padding: 80px 0;
}

.blog-content .container {
    display: flex;
    gap: 50px;
}

.blog-categories {
    flex: 0 0 25%;
}

.blog-categories h2 {
    margin-bottom: 20px;
}

.blog-categories ul {
    margin-bottom: 30px;
}

.blog-categories ul li {
    margin-bottom: 10px;
}

.blog-categories ul li a {
    color: var(--text-color);
    transition: var(--transition);
}

.blog-categories ul li a:hover,
.blog-categories ul li a.active {
    color: var(--primary-color);
}

.blog-search {
    display: flex;
    margin-bottom: 30px;
}

.blog-search input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border-right: none;
}

.blog-search button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
}

.blog-posts {
    flex: 1;
}

.blog-post {
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-image {
    flex: 0 0 300px;
}

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

.post-content {
    flex: 1;
    padding: 30px;
}

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

.post-category {
    color: var(--primary-color);
}

.blog-post h2 {
    margin-bottom: 15px;
}

.blog-post h2 a {
    color: var(--dark-color);
    transition: var(--transition);
}

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

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.blog-pagination a, .blog-pagination span {
    display: inline-block;
    padding: 8px 15px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.blog-pagination a.active, .blog-pagination a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
}

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

.newsletter h2 {
    color: var(--white);
}

.newsletter-form {
    display: flex;
    margin: 30px 0 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background: var(--dark-color);
    padding: 0 25px;
}

.privacy-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Contact Page Specific */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    margin-right: 20px;
    color: var(--primary-color);
}

.info-icon svg {
    width: 30px;
    height: 30px;
}

.info-content h3 {
    margin-bottom: 10px;
}

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

.social-connect {
    margin-top: 50px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a svg {
    width: 20px;
    height: 20px;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-form-container {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
}

.form-group textarea {
    resize: vertical;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
}

.consent-checkbox input {
    margin-right: 10px;
    margin-top: 5px;
    width: auto;
}

.submit-btn {
    width: 100%;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light-color);
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 30px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thank You Popup */
.thank-you-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.thank-you-popup.active {
    display: flex;
}

.popup-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    max-width: 500px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.popup-icon {
    color: var(--success);
    margin-bottom: 20px;
}

.popup-icon svg {
    width: 60px;
    height: 60px;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 0 20px;
}

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

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-links h3, 
.footer-contact h3, 
.footer-social h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links ul li a, 
.footer-contact p, 
.footer-social a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-contact p i {
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.footer-policies {
    display: flex;
    gap: 20px;
}

.footer-policies a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-policies a:hover {
    color: var(--white);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 15px;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.cookie-content p {
    margin: 10px 20px 10px 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.cookie-btn {
    padding: 8px 15px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-btn.customize {
    background: var(--light-color);
    color: var(--dark-color);
}

.cookie-btn.reject {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.cookie-policy {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-policy a {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-preview .container,
    .about-mission .container,
    .our-story .container,
    .service-category,
    .service-category.reverse,
    .blog-content .container,
    .contact-grid {
        flex-direction: column;
    }
    
    .service-image,
    .post-image {
        flex: 0 0 auto;
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .post-image {
        height: 200px;
    }
    
    .testimonial {
        flex: 0 0 80%;
    }
}

@media (max-width: 768px) {
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form .btn {
        border-radius: var(--border-radius);
    }
    
    .newsletter-form input {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .service-card,
    .format-card,
    .credential-item {
        padding: 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p,
    .page-banner p {
        font-size: 1rem;
    }
    
    .testimonial {
        flex: 0 0 90%;
    }
}
