/* Jobify - Main Stylesheet */
/* White and Black Theme with Transparent Buttons */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #333;
}

a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-menu a:hover,
.nav-menu a.active {
    border-bottom-color: #000;
    color: #000;
}

.nav-menu a.btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #000;
    border-radius: 6px;
    background: transparent;
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.nav-menu a.btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #000;
    color: #fff;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #000;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.hero-content > div:first-child {
    text-align: left;
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.hero-image {
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Forms */
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.job-search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.search-form-group {
    margin-bottom: 0;
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card-content {
    text-align: center;
    padding: 2rem;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.pricing-title {
    margin-bottom: 1rem;
}

.free-title {
    color: #2e7d32;
}

.pricing-price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pricing-description {
    margin-bottom: 2rem;
}

.pricing-features {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

/* About Page Styles */
.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.about-hero-img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.team-member {
    text-align: center;
}

.team-member-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.team-member-role {
    color: #666;
    font-size: 0.9rem;
}

/* Legal Pages Styles */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #000;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #444;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #444;
}

.legal-container strong {
    color: #000;
    font-weight: 600;
}

/* Job Details Page Styles */
.job-details-container {
    max-width: 1200px;
    margin: 0 auto;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.job-title-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.job-company h2 {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}

.job-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 200px;
}

.job-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.job-main-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.job-description,
.job-requirements {
    line-height: 1.7;
    color: #444;
}

.salary-info {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.salary-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2e7d32;
}

.job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.company-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.company-logo-img {
    max-width: 120px;
    max-height: 120px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.company-description {
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.company-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.company-detail:last-child {
    border-bottom: none;
}

.company-detail strong {
    color: #000;
    font-weight: 600;
}

.company-detail a {
    color: #0066cc;
    text-decoration: none;
}

.company-detail a:hover {
    text-decoration: underline;
}

.job-details-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.job-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.job-detail:last-child {
    border-bottom: none;
}

.job-detail strong {
    color: #000;
    font-weight: 600;
    min-width: 120px;
}

.job-detail span {
    color: #444;
    text-align: right;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    color: #000;
    font-weight: 600;
}

.contact-item a {
    color: #0066cc;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #000;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fff;
    color: #000;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #000;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #d32f2f;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.form-success {
    color: #2e7d32;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Cards */
.card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-header {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

/* Job Cards */
.job-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: #000;
    transform: translateY(-2px);
}

.job-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.job-company {
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.job-meta span {
    background: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Grid */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Footer */
.footer {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    color: #2e7d32;
}

.alert-error {
    background: #ffebee;
    border: 1px solid #f44336;
    color: #d32f2f;
}

.alert-info {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    color: #1976d2;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        text-align: center;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu a {
        padding: 1rem;
        display: block;
        border-bottom: none;
    }
    
    .nav-menu a.btn {
        margin-left: 0;
        width: 100%;
        max-width: none;
        margin: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }
    
    /* Hero Section Mobile Optimization */
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        display: block !important;
        grid-template-columns: none !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .hero-content > div:first-child {
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
        text-align: center;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .hero img {
        max-width: 100% !important;
        height: auto !important;
        margin-top: 1rem;
    }
    
    /* Typography Mobile Optimization */
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Grid System Mobile Optimization */
    .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Cards Mobile Optimization */
    .card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .card img {
        max-width: 60px !important;
        height: 60px !important;
    }
    
    /* Section Spacing Mobile Optimization */
    .section {
        padding: 40px 0;
    }
    
    /* Container Mobile Optimization */
    .container {
        padding: 0 1rem;
    }
    
    /* Form Mobile Optimization */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 1rem;
        border: 2px solid #e0e0e0;
        border-radius: 6px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
        box-sizing: border-box;
    }
    
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: #000;
    }
    
    /* Button Mobile Optimization */
    .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        text-align: center;
        margin: 0.5rem 0;
        border-radius: 6px;
        display: block;
    }
    
    .btn-large {
        padding: 1.2rem;
        font-size: 1.1rem;
    }
    
    /* Footer Mobile Optimization */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-section h3 {
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a {
        color: #666;
        text-decoration: none;
        font-size: 0.95rem;
    }
    
    /* Testimonials Mobile Optimization */
    .testimonial {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .testimonial img {
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto 1rem;
    }
    
    .testimonial blockquote {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .testimonial cite {
        font-size: 0.9rem;
        font-style: normal;
        font-weight: 600;
    }
    
    /* Job Search Form Mobile Optimization */
    .job-search-form {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .search-form-group {
        margin-bottom: 1rem !important;
    }
    
    /* Job Cards Mobile Optimization */
    .job-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .job-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .job-card .company {
        font-size: 0.95rem;
        color: #666;
        margin-bottom: 1rem;
    }
    
    .job-card .location {
        font-size: 0.9rem;
        color: #888;
    }
    
    /* Pricing Cards Mobile Optimization */
    .pricing-card-content {
        padding: 1.5rem !important;
    }
    
    .pricing-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    .pricing-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .pricing-price {
        font-size: 1.8rem !important;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    
    .pricing-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-features {
        max-width: 100% !important;
        text-align: center !important;
    }
    
    .pricing-features ul {
        text-align: left;
        margin-bottom: 2rem;
    }
    
    .pricing-features ul li {
        padding: 0.5rem 0;
        font-size: 0.95rem;
    }
    
    /* Contact Form Mobile Optimization */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info {
        margin-top: 2rem;
        text-align: center;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    /* About Page Mobile Optimization */
    .about-hero {
        margin-bottom: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .team-member {
        margin-bottom: 1.5rem;
    }
    
    .team-member-img {
        width: 100px !important;
        height: 100px !important;
    }
    
    .team-member h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .team-member-role {
        font-size: 0.85rem;
    }
    
    /* Enhanced About Page Mobile Features */
    .about-container h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .about-container h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .about-container h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .about-container p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .about-container ul {
        padding-left: 1.5rem;
    }
    
    .about-container ul li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Expert Consultation Mobile Optimization */
    .consultation-options {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .consultation-option {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .consultation-option h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .consultation-option .price {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    
    /* Payment Form Mobile Optimization */
    .payment-form {
        padding: 1.5rem;
    }
    
    .payment-summary {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .payment-summary h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .payment-summary .amount {
        font-size: 1.5rem;
        font-weight: 700;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .card {
        padding: 1.25rem;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .logo a {
        font-size: 1.6rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    .testimonial {
        padding: 1.25rem;
    }
    
    .testimonial img {
        width: 50px !important;
        height: 50px !important;
    }
    
    .pricing-card {
        padding: 1.5rem 1.25rem;
    }
    
    .consultation-option {
        padding: 1.5rem 1.25rem;
    }
    
    .payment-form {
        padding: 1.25rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    /* About Page Mobile Optimization */
    .about-hero {
        margin-bottom: 2rem;
    }
    
    .about-hero-img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .about-features {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .team-member {
        margin-bottom: 1.5rem;
    }
    
    .team-member-img {
        width: 100px !important;
        height: 100px !important;
    }
    
    .team-member h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .team-member-role {
        font-size: 0.85rem;
    }
    
    /* Enhanced About Page Mobile Features for Small Screens */
    .about-container h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }
    
    .about-container h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .about-container h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .about-container p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }
    
    .about-container ul li {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Legal Pages Mobile Optimization */
    .legal-container h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .legal-container h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .legal-container h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .legal-container p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }
    
    .legal-container ul {
        padding-left: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .legal-container ul li {
        margin-bottom: 0.4rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Job Details Mobile Optimization */
    .job-header {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .job-title-section h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .job-company h2 {
        font-size: 1.3rem;
    }
    
    .job-meta {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .job-actions {
        flex-direction: row !important;
        min-width: auto !important;
    }
    
    .job-details-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .job-sidebar {
        order: -1;
    }
    
    .company-logo-img {
        max-width: 100px !important;
        max-height: 100px !important;
    }
    
    .job-detail {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.25rem !important;
    }
    
    .job-detail strong {
        min-width: auto !important;
    }
    
    .job-detail span {
        text-align: left !important;
    }
    
    .company-detail {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.25rem !important;
    }
    
    .contact-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.25rem !important;
    }
}
