* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* Global Link Styles */
a {
    color: #002466;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a4d8c;
}

a:active,
a:visited {
    color: #002466;
}

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

/* Typography - Less Bold Headings */
h1 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h2 {
    font-weight: 600;
    margin-bottom: 0.8rem;
}

h3 {
    font-weight: 500;
    margin-bottom: 0.6rem;
}

/* Reduce text spacing */
p {
    margin-bottom: 0.8rem;
}

/* Header */
header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #333;
}

.logo img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: #002466;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 36, 102, 0.6) 0%, rgba(26, 77, 140, 0.6) 100%), url('hero.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    min-height: 80vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 36, 102, 0.4) 0%, rgba(26, 77, 140, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.domain {
    color: #6BB6FF;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Domain Checker */
.domain-checker {
    max-width: 600px;
    margin: 0 auto;
}

.checker-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

#domainInput {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 1.1rem;
    outline: none;
    background: transparent;
}

.domain-suffix {
    color: #666;
    font-size: 1.1rem;
    margin-right: 12px;
}

.check-btn {
    background: #002466;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.check-btn:hover {
    background: #1a4d8c;
}

.check-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}


/* About */
.about {
    padding: 6rem 0;
    background: white;
    position: relative;
}

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

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 36, 102, 0.15);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #002466;
    font-weight: 600;
    letter-spacing: -1px;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #6BB6FF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Interface Example */
.interface-example {
    padding: 6rem 0;
    background: #f0f4f8;
    position: relative;
}

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

.interface-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #002466;
    font-weight: 600;
    letter-spacing: -1px;
}

.interface-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #6BB6FF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.interface-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.interface-image {
    position: relative;
}

.interface-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 36, 102, 0.15);
    transition: transform 0.3s ease;
}

.interface-img:hover {
    transform: scale(1.02);
}

/* Community */
.community {
    padding: 6rem 0;
    background: white;
    position: relative;
}

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

.community-image {
    position: relative;
}

.community-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 36, 102, 0.15);
    transition: transform 0.3s ease;
}

.community-img:hover {
    transform: scale(1.02);
}

.community-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #002466;
    font-weight: 600;
    letter-spacing: -1px;
}

.community-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #6BB6FF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.community-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.community-stats {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 36, 102, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #002466;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #001a3d 0%, #002466 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.footer-section p, .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .checker-container {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }
    
    .domain-suffix {
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 1rem;
        white-space: nowrap;
    }
    
    .check-btn {
        padding: 12px 16px;
        font-size: 1rem;
        white-space: nowrap;
        min-width: 80px;
        width: 100%;
    }
    
    #domainInput {
        width: 100%;
        margin-bottom: 8px;
    }
    
    nav ul {
        gap: 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
    }
    
    .interface-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .interface-text h2 {
        font-size: 2.2rem;
    }
    
    .interface-text p {
        font-size: 1.1rem;
    }
    
    .about-img,
    .interface-img,
    .community-img,
    .jobs-img img {
        max-height: 250px;
        object-fit: cover;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .community-img {
        order: 1;
    }
    
    .community-text {
        order: 2;
    }
    
    .community-text h2 {
        font-size: 2.2rem;
    }
    
    .community-text p {
        font-size: 1.1rem;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .jobs-img {
        order: 1;
    }
    
    .jobs-text {
        order: 2;
    }
    
    .jobs-text h2 {
        font-size: 2.2rem;
    }
    
    .jobs-text p {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Register Page */
.register-hero {
    background: linear-gradient(135deg, rgba(0, 36, 102, 0.6) 0%, rgba(26, 77, 140, 0.6) 100%), url('hero.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.register-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 36, 102, 0.4) 0%, rgba(26, 77, 140, 0.4) 100%);
    z-index: 1;
}

.register-content {
    position: relative;
    z-index: 2;
}

.register-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.domain-display {
    font-size: 1.8rem;
    color: #ADD8E6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.register-form-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 36, 102, 0.1);
}

.form-container h2 {
    color: #002466;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-container h3 {
    color: #002466;
    font-size: 1.4rem;
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #ADD8E6;
    padding-bottom: 0.5rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 500;
}

.submit-btn {
    background: #002466;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    margin-top: 2rem;
}

.submit-btn:hover {
    background: #1a4d8c;
}

/* Responsive for register page */
@media (max-width: 768px) {
    .form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .register-content h1 {
        font-size: 2rem;
    }
    
    .domain-display {
        font-size: 1.4rem;
    }
}

/* Success Page */
.success-hero {
    background: linear-gradient(135deg, rgba(0, 36, 102, 0.6) 0%, rgba(26, 77, 140, 0.6) 100%), url('hero.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.success-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 36, 102, 0.4) 0%, rgba(26, 77, 140, 0.4) 100%);
    z-index: 1;
}

.success-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.success-icon {
    margin-bottom: 2rem;
}

.ship-emoji {
    font-size: 4rem;
    animation: shipFloat 4s ease-in-out infinite;
}

@keyframes shipFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-15px) rotate(-2deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-15px) rotate(2deg); 
    }
}

.success-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.success-message {
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.9;
}

.registration-details {
    padding: 4rem 0;
    background: #f8f9fa;
}

.details-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 36, 102, 0.1);
}

.details-container h2 {
    color: #002466;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.details-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ADD8E6;
}

.detail-label {
    font-weight: 600;
    color: #002466;
    min-width: 120px;
}

.detail-value {
    color: #555;
    text-align: right;
    flex: 1;
}

/* Success Page Styles */
.details-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 36, 102, 0.1);
    border: 1px solid #e0e0e0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #555;
    flex: 0 0 40%;
}

.detail-value {
    color: #002466;
    font-weight: 500;
    text-align: right;
    flex: 1;
    word-break: break-word;
}

.success-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-home, .btn-contact {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    justify-content: center;
}

.btn-home {
    background: linear-gradient(135deg, #002466 0%, #1a4d8c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 36, 102, 0.3);
}

.btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 36, 102, 0.4);
    background: linear-gradient(135deg, #1a4d8c 0%, #002466 100%);
}

.btn-contact {
    background: linear-gradient(135deg, #6BB6FF 0%, #4A9EFF 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(107, 182, 255, 0.3);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 182, 255, 0.4);
    background: linear-gradient(135deg, #4A9EFF 0%, #6BB6FF 100%);
}

/* Responsive for success page */
@media (max-width: 768px) {
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .detail-label {
        flex: none;
        font-size: 0.9rem;
    }
    
    .detail-value {
        text-align: left;
        font-size: 0.9rem;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-home, .btn-contact {
        width: 100%;
        max-width: 300px;
    }
}

/* Responsive for success page */
@media (max-width: 768px) {
    .success-content h1 {
        font-size: 2.2rem;
    }
    
    .success-message {
        font-size: 1.1rem;
    }
    
    .details-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .detail-value {
        text-align: left;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}


/* Whois Page */
.whois-hero {
    background: linear-gradient(135deg, rgba(0, 36, 102, 0.6) 0%, rgba(26, 77, 140, 0.6) 100%), url('hero.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.whois-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 36, 102, 0.4) 0%, rgba(26, 77, 140, 0.4) 100%);
    z-index: 1;
}

.whois-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.whois-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.whois-checker {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 2rem;
}

.whois-results {
    padding: 4rem 0;
    background: #f8f9fa;
}

.results-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 36, 102, 0.1);
}

.whois-found {
    text-align: center;
}

.whois-found h3 {
    color: #28a745;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.whois-not-found {
    text-align: center;
}

.whois-not-found h3 {
    color: #dc3545;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.whois-error {
    text-align: center;
}

.whois-error h3 {
    color: #ffc107;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.whois-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.whois-details p {
    margin-bottom: 0.5rem;
    color: #555;
}

.btn-primary {
    background: #002466;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.btn-primary:hover {
    background: #1a4d8c;
    transform: translateY(-2px);
}

.contact-form-section {
    padding: 4rem 0;
    background: white;
}

/* Responsive for whois page */
@media (max-width: 768px) {
    .whois-content h1 {
        font-size: 2rem;
    }
    
    .results-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .whois-details {
        padding: 1rem;
    }
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, rgba(0, 36, 102, 0.6) 0%, rgba(26, 77, 140, 0.6) 100%), url('hero.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 36, 102, 0.4) 0%, rgba(26, 77, 140, 0.4) 100%);
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-content .hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-form-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.domain-check-result {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.domain-found {
    color: #28a745;
    font-weight: 600;
}

.domain-not-found {
    color: #dc3545;
    font-weight: 600;
}

.domain-error {
    color: #ffc107;
    font-weight: 600;
}

/* Compact footer for contact page */
.contact-form-section + footer .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form-section + footer .footer-section {
    padding: 1.5rem 0;
}

.contact-form-section + footer .footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-form-section + footer .footer-section p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.contact-form-section + footer .footer-section ul {
    margin-top: 1rem;
}

.contact-form-section + footer .footer-section ul li {
    margin-bottom: 0.3rem;
}

.contact-form-section + footer .footer-section ul li a {
    font-size: 0.9rem;
}

/* Responsive for contact page */
@media (max-width: 768px) {
    .contact-content h1 {
        font-size: 2rem;
    }
}

/* Page specific styles */
.page-header {
    background: #002466;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-content {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    color: #002466;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

/* Jobs Section */
.jobs {
    padding: 6rem 0;
    background: #f0f4f8;
    position: relative;
}

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

.jobs-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #002466;
    font-weight: 600;
    letter-spacing: -1px;
}

.jobs-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #6BB6FF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.jobs-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.jobs-img {
    text-align: center;
}

.jobs-img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 36, 102, 0.15);
    transition: transform 0.3s ease;
}

.jobs-img img:hover {
    transform: scale(1.02);
}

/* Responsive for jobs section */
@media (max-width: 768px) {
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .jobs-img {
        order: 1;
    }
    
    .jobs-text {
        order: 2;
    }
    
    .jobs-text h2 {
        font-size: 2rem;
    }
    
    .jobs-text .lead {
        font-size: 1.1rem;
    }
    
    .jobs-img img {
        max-height: 250px;
        object-fit: cover;
    }
}

.page-content p {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.page-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.page-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.page-content a {
    color: #002466;
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}
