/* Basic Reset & Box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #ffffff;
    scroll-behavior: smooth;
}

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

/* General Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px; /* Slightly larger buttons */
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: none;
}

.btn-primary { /* For header "REACH OUT" */
    background-color: #0a1f38; /* Dark blue from jryanfuller.com header */
    color: #ffffff;
    border: 2px solid #0a1f38;
}

.btn-primary:hover {
    background-color: #1a3b5f; /* Darker blue on hover */
    border-color: #1a3b5f;
}

.btn-outline { /* For hero section "REACH OUT" */
    background-color: transparent;
    color: #0a1f38; /* Dark blue text */
    border: 2px solid #0a1f38;
}

.btn-outline:hover {
    background-color: #0a1f38;
    color: #ffffff;
}

.btn-outline:hover {
    background-color: #0a1f38;
    color: #ffffff;
}

/* Header Styling */
.site-header {
    background-color: #ffffff; /* White header */
    padding: 15px 0;
    border-bottom: 1px solid #eee; /* Subtle border */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.site-title {
    font-size: 1.8em;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    color: #0a1f38; /* Dark blue title */
}

.site-subtitle {
    font-size: 0.7em;
    font-weight: normal;
    opacity: 0.8;
    margin-top: 5px;
    color: #0a1f38;
}

/* Header Contact Styling */
.header-contact {
    order: 2;
}

.header-phone {
    color: #0a1f38;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    padding: 8px 15px;
    border: 2px solid #0a1f38;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.header-phone:hover {
    background-color: #0a1f38;
    color: #ffffff;
}

.site-nav ul {
    list-style: none;
    display: flex;
}

.site-nav li {
    margin-left: 30px;
}

.site-nav a {
    text-decoration: none;
    color: #0a1f38; /* Dark blue nav links */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: #007bff; /* Primary blue on hover and active */
    position: relative;
}

.site-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #007bff;
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }
    
    .site-title {
        text-align: center;
        font-size: 1.5em;
        order: 1;
    }
    
    .site-subtitle {
        font-size: 0.6em;
    }
    
    .header-contact {
        order: 2;
        text-align: center;
    }
    
    .header-phone {
        font-size: 0.9em;
        padding: 6px 12px;
    }
    
    .site-nav {
        order: 3;
    }
    
    .site-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .site-nav li {
        margin-left: 0;
    }
    
    .site-nav a {
        font-size: 0.8em;
        padding: 5px 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
        order: 4;
    }
    
    /* Footer Mobile */
    .footer-contact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-contact-item strong {
        font-size: 1em;
    }
    
    /* Hero Section Mobile */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text {
        max-width: 100%;
        padding-right: 0;
    }
    
    .hero-text h1 {
        font-size: 2.2em;
        line-height: 1.3;
    }
    
    .hero-tagline {
        font-size: 1em;
    }
    
    .hero-description {
        font-size: 1em;
    }
    
    .hero-image {
        max-width: 80%;
        text-align: center;
    }
    
    /* Credentials Grid Mobile */
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .credential-item {
        padding: 25px 20px;
    }
    
    /* Content Sections Mobile */
    .content-section {
        padding: 40px 0;
    }
    
    .content-section h2 {
        font-size: 2em;
        margin-bottom: 25px;
    }
    
    .content-section p {
        font-size: 1em;
    }
    
    /* Service Items Mobile */
    .service-item {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .service-item h3 {
        font-size: 1.4em;
    }
    
    .service-item p {
        font-size: 1em;
    }
}

/* Hero Section Styling */
.hero-section {
    background-color: #0a1f38; /* Dark blue background */
    color: #ffffff;
    padding: 60px 0; /* Adjusted padding */
    position: relative;
    overflow: hidden;
}

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

.hero-text {
    flex: 1;
    max-width: 55%;
    padding-right: 40px;
}

.hero-tagline { /* Aliza's opening line */
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #b0c4de; /* Lighter blue */
}

.hero-text h1 {
    font-size: 3.2em; /* Large heading */
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.hero-description { /* Aliza's descriptive text */
    font-size: 1.05em;
    margin-bottom: 30px;
    color: #e0e0e0; /* Lighter text */
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    max-width: 40%; /* Image takes up a bit less space */
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Shadow for image */
}

/* Credentials Section Styling */
.credentials-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #eee;
}

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

.credential-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.credential-item h3 {
    color: #0a1f38;
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: bold;
}

.credential-item p {
    color: #666;
    font-size: 1em;
    margin: 0;
}

/* General Content Section Styling */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #0a1f38;
}

.content-section p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

/* Services Section Styling */
.service-item {
    background-color: #f8f9fa;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    transition: box-shadow 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-item h3 {
    color: #0a1f38;
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: bold;
}

.service-item p {
    font-size: 1.05em;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-item em {
    color: #007bff;
    font-style: italic;
    font-weight: 500;
}

/* Enhanced Contact Section */
.contact-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

.contact-method {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}

.contact-method h3 {
    color: #0a1f38;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-method p {
    color: #666;
    margin-bottom: 10px;
    font-size: 1.05em;
}

.contact-method p strong {
    color: #0a1f38;
    font-weight: bold;
}

/* Call-to-Action Section */
.cta-section {
    background-color: #0a1f38;
    color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.cta-section h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1em;
    min-width: 150px;
}

.cta-buttons .btn-primary {
    background-color: #ffffff;
    color: #0a1f38;
    border: 2px solid #ffffff;
}

.cta-buttons .btn-primary:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.cta-buttons .btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-buttons .btn-outline:hover {
    background-color: #ffffff;
    color: #0a1f38;
}

/* Aliza Specific Content Styling */
.finances-section-aliza .fees-block,
.finances-section-aliza .insurance-block {
    background-color: #f8f9fa; /* Light grey */
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px; /* Space below blocks if they wrap */
}
.finances-section-aliza .finances-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}
.finances-section-aliza .fees-block, .finances-section-aliza .insurance-block {
    flex: 1;
    min-width: 280px;
}
.finances-section-aliza h3 {
    color: #007bff; /* Primary blue */
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 1.4em;
}
.finances-section-aliza .icon-currency,
.finances-section-aliza .icon-insurance {
    font-size: 1.8em;
    margin-right: 10px;
    color: #007bff;
}

.finance-info-box {
    background-color: #e9ecef;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
}
.finance-info-box .profile-pic-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    border: 2px solid #e9ecef;
    transition: transform 0.3s ease;
}

.finance-info-box .profile-pic-small:hover {
    transform: scale(1.05);
}
.finance-info-box .box-text p {
    font-size: 0.95em;
    color: #444;
    margin-bottom: 5px;
}
.finance-info-box .box-text p a {
    color: #007bff;
    text-decoration: none;
}
.finance-info-box .box-text p strong {
    color: #333;
}

.qualifications-section-aliza .qualification-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}
.qualifications-section-aliza .qualification-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.qualifications-section-aliza .qual-text {
    flex-grow: 1;
}
.qualifications-section-aliza h3 {
    font-size: 1.3em;
    margin-bottom: 5px;
    color: #0a1f38;
}
.qualifications-section-aliza p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 3px;
}
.qualifications-section-aliza .icon-verified {
    font-size: 2.8em;
    color: #28a745;
    margin-right: 15px;
    padding-top: 3px;
    font-weight: bold;
}
.qualifications-section-aliza .icon-education {
    font-size: 2.8em;
    color: #007bff;
    margin-right: 15px;
    padding-top: 3px;
}

.contact-section-aliza .contact-info-box {
    background-color: #e9ecef;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
}
.contact-section-aliza .profile-pic-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    border: 2px solid #e9ecef;
    transition: transform 0.3s ease;
}

.contact-section-aliza .profile-pic-small:hover {
    transform: scale(1.05);
}
.contact-section-aliza .box-text p {
    font-size: 0.95em;
    color: #444;
    margin-bottom: 5px;
}
.contact-section-aliza .box-text p a {
    color: #007bff;
    text-decoration: none;
}

.contact-section-aliza .box-text p a:hover {
    text-decoration: underline;
}

/* Reach Out Section Styling */
.reach-out-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.reach-out-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #0a1f38;
}

.reach-out-section > .container > p {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-method {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-method .contact-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}

.contact-method h3 {
    color: #0a1f38;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-method p {
    color: #666;
    margin-bottom: 10px;
    font-size: 1.05em;
}

.contact-method p a {
    color: #0a1f38;
    text-decoration: none;
    font-weight: bold;
}

.contact-method p a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Contact Form Styling */
.contact-form-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-container h3 {
    color: #0a1f38;
    font-size: 1.8em;
    margin-bottom: 30px;
    text-align: center;
}

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

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #0a1f38;
    font-weight: 500;
    font-size: 0.95em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9em;
    color: #666;
    line-height: 1.4;
}

.contact-form .checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    margin-top: 10px;
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.contact-section-aliza .box-text p strong {
    color: #333;
}

/* Footer Styling */
.site-footer {
    background-color: #0a1f38; /* Dark blue footer */
    color: #ffffff;
    padding: 40px 0 20px;
    margin-top: 60px; /* Space above footer */
}

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

.footer-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.footer-contact-item strong {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.footer-contact-item strong a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item strong a:hover {
    color: #b0c4de;
    text-decoration: underline;
}

.footer-contact-item span {
    font-size: 0.9em;
    opacity: 0.8;
    color: #e0e0e0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9em;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    .hero-text h1 {
        font-size: 2.8em;
    }
    .hero-image {
        max-width: 70%;
    }
    .logos-container img {
        height: 30px;
    }
    .content-section h2 {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: center;
    }
    .site-title {
        font-size: 1.6em;
        text-align: center;
    }
    .site-nav ul {
        flex-direction: column;
        text-align: center;
        margin-top: 15px;
    }
    .site-nav li {
        margin-left: 0;
        margin-bottom: 10px;
    }
    .btn-primary {
        width: 100%;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.2em;
    }
    .hero-image {
        max-width: 90%;
    }
    .finances-content, .finance-info-box, .contact-info-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .finance-info-box .profile-pic-small, .contact-info-box .profile-pic-small {
        margin-bottom: 15px;
    }
    .finances-section-aliza .fees-block, .finances-section-aliza .insurance-block {
        width: 100%;
    }
    .qualifications-section-aliza .qualification-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .qualifications-section-aliza .stamp-icon, .qualifications-section-aliza .icon-education {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Additional Mobile Improvements */
@media (max-width: 768px) {
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cta-section {
        padding: 40px 20px;
    }
    .cta-section h3 {
        font-size: 1.6em;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    .service-item {
        padding: 25px 20px;
    }
    .site-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .site-nav li {
        margin-bottom: 0;
    }
}

/* Visual Enhancements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a1f38 0%, #1a3b5f 100%);
    z-index: -1;
}

.content-section:nth-child(even) {
    background-color: #ffffff;
}

.content-section:nth-child(odd) {
    background-color: #f8f9fa;
}

/* Accessibility improvements */
.btn:focus,
.site-nav a:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Loading animation for better UX */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Journey Steps Styling */
.journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: #0a1f38;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(10, 31, 56, 0.1);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #0a1f38;
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.step-item h3 {
    color: #0a1f38;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.step-item p {
    margin-bottom: 20px;
    color: #666;
}

/* Service Actions Styling */
.service-actions {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-actions .btn {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

@media (max-width: 768px) {
    .service-actions {
        flex-direction: column;
    }
    
    .service-actions .btn {
        width: 100%;
    }
    
    .journey-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-item {
        padding: 20px 15px;
    }
}

/* Modern Finance Section Styling */
.finances-section-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.finances-section-modern .section-intro {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    border-color: #0a1f38;
    transform: scale(1.05);
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.pricing-card h3 {
    color: #0a1f38;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.pricing-amount {
    font-size: 2.5em;
    font-weight: bold;
    color: #0a1f38;
    margin-bottom: 20px;
}

.pricing-details {
    margin-bottom: 30px;
}

.pricing-details p {
    margin: 8px 0;
    color: #666;
}

.payment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.payment-info h4 {
    color: #0a1f38;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.payment-info p {
    color: #666;
    margin: 0;
}

/* Modern Qualifications Section Styling */
.qualifications-section-modern {
    background: white;
    padding: 80px 0;
}

.qualifications-section-modern .section-intro {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.credential-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid #0a1f38;
}

.credential-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.credential-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.credential-card h3 {
    color: #0a1f38;
    font-size: 1.4em;
    margin-bottom: 20px;
}

.credential-details p {
    margin: 8px 0;
    color: #555;
}

.credential-details strong {
    color: #0a1f38;
}

.specializations {
    text-align: center;
    margin-top: 60px;
}

.specializations h3 {
    color: #0a1f38;
    font-size: 1.8em;
    margin-bottom: 30px;
}

.specialization-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.tag {
    background: #0a1f38;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #1a3b5f;
    transform: translateY(-2px);
}

/* Modern Contact Section Styling */
.contact-section-modern {
    background: linear-gradient(135deg, #0a1f38 0%, #1a3b5f 100%);
    color: white;
    padding: 80px 0;
}

.contact-section-modern .section-intro {
    text-align: center;
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.therapist-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}

.profile-image {
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.profile-details h3 {
    color: white;
    font-size: 1.5em;
    margin-bottom: 5px;
}

.profile-details .title {
    color: #b0c4de;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.profile-details .experience {
    color: #e0e0e0;
    font-weight: bold;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-method-card {
    background: rgba(255,255,255,0.1);
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.method-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.contact-method-card h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.contact-method-card p {
    margin: 5px 0;
    color: #e0e0e0;
}

.contact-method-card a {
    color: white;
    text-decoration: none;
}

.contact-method-card a:hover {
    text-decoration: underline;
}

.method-note {
    font-size: 0.9em;
    color: #b0c4de !important;
}

.quick-contact {
    background: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.quick-contact h3 {
    color: white;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.quick-contact p {
    color: #e0e0e0;
    margin-bottom: 30px;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
}

.consultation-highlight {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #b0c4de;
}

.consultation-highlight h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.consultation-highlight p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.95em;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .payment-info {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .credentials-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .specialization-tags {
        gap: 10px;
    }
    
    .tag {
        padding: 8px 15px;
        font-size: 0.8em;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .therapist-profile {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quick-contact {
        padding: 25px 20px;
    }
    
    .quick-actions {
        gap: 10px;
    }
}