/* ---------------------------------------------------- */
/* CSS Variables */
/* ---------------------------------------------------- */
:root {
    --primary: #1a237e;
    --secondary: #283593;
    --accent: #3949ab;
    --highlight: #5c6bc0;
    --light: #e8eaf6;
    --dark: #0d1440;
    --text: #1a1a1a;
    --text-light: #f5f5f5;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Battambang', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ---------------------------------------------------- */
/* Header & Navigation */
/* ---------------------------------------------------- */
header {
    background: var(--gradient);
    color: white;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* NEW FIX: CSS សម្រាប់ Logo Image */
.logo-image-wrapper {
    /* រូបភាពនៅកន្លែងនេះ ជំនួស Icon ដើម */
    width: 40px; 
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ធានាថារូបភាពបង្ហាញពេញ */
    border-radius: 50%; /* បើចង់បានរាងមូល */
}

/* លុប Logo Icon ចេញ ព្រោះប្រើ Image វិញ */
.logo-icon {
    display: none;
}

.logo > div {
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0; 
    line-height: 1; 
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

nav a.active {
    background-color: rgba(255, 255, 255, 0.15);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 80%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ---------------------------------------------------- */
/* Hero Section */
/* ---------------------------------------------------- */
.hero {
    background: var(--gradient);
    color: white;
    padding: 12rem 2rem 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" fill="%23f8f9fa"/></svg>');
    background-size: 100% 100px;
    background-repeat: no-repeat;
    background-position: bottom;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* ---------------------------------------------------- */
/* Main Content (Container, Section) */
/* ---------------------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient);
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* ---------------------------------------------------- */
/* About Section */
/* ---------------------------------------------------- */
.about {
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background: var(--light);
    transition: all 0.3s;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

.about-visual {
    position: relative;
    height: 400px;
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.floating-element {
    position: absolute;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: var(--shadow);
}

.element-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.element-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 30%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Floating elements specific colors */
.floating-element.element-4 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    top: 70%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

.floating-element.element-5 {
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    top: 30%;
    left: 80%;
    animation: float 8s ease-in-out infinite;
}

.floating-element.element-6 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    top: 60%;
    left: 85%;
    animation: float 6s ease-in-out infinite;
}

.floating-element.element-7 {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    top: 15%;
    left: 15%;
    animation: float 9s ease-in-out infinite;
}

/* ---------------------------------------------------- */
/* Teams Section */
/* ---------------------------------------------------- */
.teams {
    background-color: #f8f9fa;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-header {
    background: var(--gradient);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.team-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-count {
    font-size: 0.9rem;
    opacity: 0.9;
}

.team-members {
    padding: 2rem;
}

.member {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.member:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.member-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.member-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.member-info h4 {
    margin-bottom: 0.3rem;
    color: var(--primary);
}

.member-info p {
    font-size: 0.9rem;
    color: #666;
}

/* ---------------------------------------------------- */
/* Specialists Section */
/* ---------------------------------------------------- */
.specialists {
    background: white;
}

.specialty-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.specialty-card {
    background: var(--light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.specialty-card:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-10px);
}

.specialty-card:hover .specialty-icon {
    color: white;
}

.specialty-card:hover .specialty-desc {
    color: rgba(255, 255, 255, 0.9);
}

.specialty-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.specialty-name {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.specialty-desc {
    color: #666;
    font-size: 0.95rem;
}

/* ---------------------------------------------------- */
/* Contact Section */
/* ---------------------------------------------------- */
.contact {
    background: var(--gradient);
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(57, 73, 171, 0.2);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
}

/* ---------------------------------------------------- */
/* Footer */
/* ---------------------------------------------------- */
footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.footer-col p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ---------------------------------------------------- */
/* Responsive Design & Mobile Menu Logic */
/* ---------------------------------------------------- */

/* Desktop to Tablet (Max 992px) */
@media (max-width: 992px) {
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

/* Tablet to Mobile (Max 768px) */
@media (max-width: 768px) {
    .header-container {
        padding: 10px 20px;
    }

    /* លាក់ Desktop Navigation */
    nav ul {
        display: none;
    }

    /* បង្ហាញ Mobile Menu Button */
    .mobile-menu-btn {
        display: block;
        order: 3;
    }

    /* Mobile Navigation Container (នៅពេលដែល Menu បើក) */
    header nav {
        display: none; 
        
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
        z-index: 999; 
        text-align: center;
        
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        pointer-events: none; 
    }
    
    /* Active State (នេះជា Class ដែល JavaScript ត្រូវបន្ថែម) */
    header nav.active {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    /* Mobile Links Style */
    header nav ul {
        display: block; 
        flex-direction: column;
        padding: 10px 0;
        list-style: none;
        gap: 0;
    }

    header nav ul li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    header nav ul li:last-child {
        border-bottom: none;
    }

    header nav ul li a {
        display: block;
        padding: 15px 20px;
        color: var(--text-light);
        background: none;
    }

    header nav ul li a:hover,
    header nav ul li a.active {
        background-color: var(--primary); 
    }
    
    .hero {
        padding: 10rem 1.5rem 6rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .teams-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Screen (Max 576px) */
@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .specialty-container {
        grid-template-columns: 1fr;
    }
}
/* ---------------------------------------------------- */
/* Keyframes សម្រាប់ចលនា Pulse Effect ថ្មី */
/* ---------------------------------------------------- */
@keyframes logo-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ---------------------------------------------------- */
/* Header & Navigation (រក្សាទុក Header Container ដដែល) */
/* ---------------------------------------------------- */
/* ... រក្សាកូដ header & .header-container របស់អ្នកដដែល ... */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* NEW FIX: CSS សម្រាប់ Logo Image Wrapper */
.logo-image-wrapper {
    width: 50px; /* ធំជាងមុនបន្តិច */
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    
    /* Animation: Pulse Effect */
    animation: logo-pulse 2s infinite; 
    transition: all 0.3s ease-in-out;
}

.logo-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ប្រើ cover ដើម្បីឲ្យរូបភាពពេញ */
    display: block;
    filter: brightness(1.1) contrast(1.1); /* បង្កើនភាពភ្លឺបន្តិច */
    transition: transform 0.3s, filter 0.3s;
}

/* Hover Effect: ធ្វើឲ្យ Logo រំកិលឡើងពេលដាក់ Mouse លើ */
.logo:hover .logo-image-wrapper {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.logo:hover .logo-image-wrapper img {
    transform: scale(1.05); /* Zoom ចូលបន្តិច */
}

/* លុប Logo Icon ចេញ ព្រោះប្រើ Image វិញ */
.logo-icon {
    display: none;
}

/* Logo Text Styling */
.logo > div {
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1; 
}

.logo-tagline {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0; 
    line-height: 1; 
}

/* ... រក្សាកូដ CSS ផ្សេងទៀតឲ្យនៅដដែល ... */
/* --- ផ្នែកទំនាក់ទំនងទូទៅ (General Contact Section) --- */
.contact-container {
    display: flex; /* ប្រើ Flexbox ដើម្បីដាក់ផ្នែកព័ត៌មាន និង Form ទន្ទឹមគ្នា */
    flex-wrap: wrap; /* អនុញ្ញាតឲ្យធាតុចុះបន្ទាត់ថ្មីនៅពេលអេក្រង់តូច */
    gap: 30px; /* ចន្លោះរវាងផ្នែកព័ត៌មាន និង Form */
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto; /* ដាក់ចំកណ្តាល */
    background-color: #f9f9f9; /* ពណ៌ផ្ទៃខាងក្រោយស្រាល */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* --- ផ្នែកព័ត៌មានទំនាក់ទំនង (Contact Info) --- */
.contact-info {
    flex: 1; /* អនុញ្ញាតឲ្យរីកធំពេញផ្ទៃ */
    min-width: 300px; /* កំណត់ទទឹងអប្បបរមា */
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    color: #007bff; /* ពណ៌ខៀវសម្រាប់ចំណងជើង */
    font-size: 1.8em;
    margin-bottom: 15px;
}

.contact-info p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

/* --- ព័ត៌មានលម្អិត (Location, Phone, Email) --- */
.contact-details {
    display: flex;
    flex-direction: column; /* តម្រៀបជាជួរឈរ */
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start; /* តម្រៀបផ្នែកខាងលើ */
    gap: 15px;
}

.contact-icon {
    font-size: 1.5em;
    color: #28a745; /* ពណ៌បៃតងសម្រាប់ Icon */
    padding-top: 5px;
}

.contact-item h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.1em;
}

.contact-item p {
    margin: 0;
    color: #666;
    font-size: 0.95em;
    word-wrap: break-word; /* ជួយកុំឲ្យអក្សរវែងហៀរចេញ */
}

/* --- ផ្នែក Form ទំនាក់ទំនង (Contact Form) --- */
.contact-form {
    flex: 2; /* ឲ្យ Form មានទំហំធំជាងព័ត៌មាន (2/3 នៃផ្ទៃ) */
    min-width: 350px; /* កំណត់ទទឹងអប្បបរមា */
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box; /* សំខាន់ណាស់សម្រាប់ទទឹង 100% */
    font-size: 1em;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    width: 100%; /* ឲ្យប៊ូតុងពេញទទឹង */
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* --- Media Query សម្រាប់អេក្រង់តូចៗ (Responsive for smaller screens) --- */

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column; /* នៅពេលអេក្រង់តូច ដាក់ជាជួរឈរ (Contact Info ពីលើ Form) */
        padding: 20px;
    }
    
    .contact-info, .contact-form {
        min-width: 100%; /* ឲ្យពេញទទឹង */
        padding: 20px 15px; /* កាត់បន្ថយ padding សម្រាប់ទំហំ Mobile */
    }
}

@media (max-width: 480px) {
    /* ការកែតម្រូវបន្ថែមសម្រាប់ទូរស័ព្ទតូចបំផុត */
    .contact-info h3 {
        font-size: 1.5em;
    }

    .form-control, .submit-btn {
        padding: 10px;
        font-size: 0.95em;
    }
}