﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}



body {
    color: #1A1D26;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1.1rem;
    background: #d7f6ff;
}

p {
    margin-bottom: 20px;
}

strong {
    color: #2c3e50;
    font-size: 1rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    color: white;
    padding: 0.4rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0c56cf;
}

.header-container {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

    .nav-link:hover {
        color: #4cdb79;
    }

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    width: 320px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-item:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid #e5e0e0;
}

    .dropdown-item:last-child {
        border-bottom: none;
    }

.dropdown-link {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 500;
    transition: all 0.3s;
}

    .dropdown-link:hover {
        color: #2d5bbd;
        background-color: #f8f9fa;
        padding-left: 1.4rem;
    }



.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-login {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .btn-login:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.btn-signup {
    background-color: #0551b1;
    color: white;
    font-size: 1rem;
    text-decoration: none;
}

    .btn-signup:hover {
        background-color: #3bc069;
    }

/* Hamburger open span - top left */
#menu-open-span {
    position: fixed;
    top: 1rem;
    left: 1rem;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
    display: none; /* visible only on mobile */
}

    #menu-open-span svg {
        width: 28px;
        height: 28px;
        stroke: #ffffff;
        display: none;
    }

/* Close span inside menu */
#menu-close-span {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    padding: 0;
    z-index: 1101;
    display: none; /* visible only on mobile menu */
}

    #menu-close-span svg {
        width: 28px;
        height: 28px;
        stroke: white;
    }

@media (max-width: 950px) {
    .container {
        padding: 10px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 5rem;
        margin-left: 6rem;
    }

    #menu-open-span svg {
        width: 28px;
        height: 28px;
        stroke: white;
        display: block;
    }

    table td, table th {
        padding: 12px 8px;
        font-size: 16px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -320px;
        background-color: #0c56cf;
        width: 320px;
        height: 100vh;
        flex-direction: column;
        gap: 0;
        padding: 4rem 0 2rem 0;
        transition: left 0.3s ease;
        z-index: 1050;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    }

        .nav-menu.active {
            left: 0;
        }

    .nav-item {
        width: 100%;
        padding: 0;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: space-between;
        color: #ffff;
    }

    .menu-dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: none;
        border-radius: 0;
        background-color: #0f2a6d;
    }

    .nav-item.active .menu-dropdown {
        max-height: 500px;
    }

    .dropdown-item {
        padding-left: 3rem;
        border-bottom: 1px solid #4e4c4c;
    }

    .dropdown-link {
        color: white;
    }

        .dropdown-link:hover {
            color: #4cdb79;
            background-color: rgba(255, 255, 255, 0.1);
        }

    .dropdown-icon {
        color: #4cdb79;
    }

    .header-buttons {
        display: none;
    }

    /* Show hamburger span when menu is closed */
    #menu-open-span {
        display: block;
    }

    /* Show close span inside menu when active */
    .nav-menu.active #menu-close-span {
        display: block;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        min-width: 100% !important;
    }
}

footer {
    background: #f8f9fa;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: #191a1a;
        position: relative;
        padding-bottom: 10px;
    }

        .footer-column h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: var(--accent-color);
        }

    .footer-column ul {
        list-style: none;
    }

        .footer-column ul li {
            margin-bottom: 12px;
        }

    .footer-column a {
        color: #191a1a;
        text-decoration: none;
        align-items: center;
    }



        .footer-column a:hover {
            color: #0c56cf;
            transform: translateX(5px);
        }

    .footer-column p {
        color: #191a1a;
        margin-bottom: 15px;
        line-height: 1.6;
    }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

    .contact-item i {
        margin-right: 10px;
        color: var(--primary-color);
        margin-top: 3px;
    }

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0c56cf;
}

    .footer-logo span {
        color: #323131;
    }

.copyright {
    color: #191a1a;
    font-size: 0.9rem;
}

.policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

    .policy-links a {
        color: #191a1a;
        font-size: 0.85rem;
    }

        .policy-links a:hover {
            color: #0c56cf;
        }

.social-footer {
    display: flex;
    gap: 15px;
}

    .social-footer a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: #bdc3c7;
        transition: var(--transition);
    }

        .social-footer a:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

/* NEW: Mobile Footer Layout */
.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    min-width: 400px;
}

    .footer-row .footer-column {
        flex: 1;
        min-width: calc(50% - 15px);
    }

.blog-container {
    display: flex;
    margin: 40px 0;
    gap: 40px;
    background: #fff;
}

.blog-content {
    flex: 2;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    flex-wrap: wrap;
    border-top: 1px solid #c7bfbf;
    padding-top: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #c7bfbf;
}

    .blog-meta span {
        margin-right: 20px;
        margin-bottom: 5px;
    }

.blog-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-image {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

    .featured-image img {
        width: 100%;
        transition: transform 0.5s ease;
    }

    .featured-image:hover img {
        transform: scale(1.03);
    }

.blog-text h2 {
    margin: 30px 0 15px;
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

    .blog-text h2:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: #b1b5b7;
        border-radius: 3px;
    }

.blog-text p {
    margin-bottom: 15px;
    font-size: 17px;
}

.blog-text blockquote {
    border-left: 4px solid #0c56cf;
    padding: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #555;
    background: #f8f9fa;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}


.blog-text ul {
    margin: 25px 0;
    padding-left: 20px;
    list-style: none;
}

.blog-text li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

    .blog-text li:before {
        content: '';
        position: absolute;
        left: 0;
        top: 10px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #666262;
    }

.related-articles {
    flex: 1;
    min-width: 300px;
}


.blog-container.no-sidebar .blog-content {
    flex: 1;
    max-width: 100%;
}

.blog-container.no-sidebar .related-articles {
    display: none;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    position: relative;
}

    .section-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 80px;
        height: 2px;
        background: #e74c3c;
    }

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.article-item {
    background: #f9f0f0;
    border-radius: 2px;
    padding-right: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-right: 10px;
    padding: 10px;
}

    .article-item:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
        transition: var(--transition);
    }

    .article-item:hover {
        transform: translateX(5px);
        border-left-color: #0c56cf;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

        .article-item:hover:before {
            left: 100%;
        }

    .article-item h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        line-height: 1.4;
        color: #2c3e50;
        flex: 1;
    }

.article-meta {
    display: flex;
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-bottom: 10px;
    flex-wrap: wrap;
}

    .article-meta span {
        margin-right: 15px;
        display: flex;
        align-items: center;
    }

.article-arrow {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    margin-left: 15px;
    flex-shrink: 0;
}

.article-item:hover .article-arrow {
    color: var(--accent-color);
    transform: translateX(5px);
}

.article-link {
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.article-content {
    flex: 1;
}


.newsletter {
    background: #2c3e50;
    color: white;
    padding-bottom: 50px;
    padding-left: 20px;
    margin-top: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-right: 20px;
    padding-top: 20px;
}



    .newsletter h3 {
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
    }

    .newsletter p {
        margin-bottom: 20px;
        opacity: 0.8;
        position: relative;
        z-index: 1;
    }

.newsletter-form {
    display: flex;
    position: relative;
    z-index: 1;
}

    .newsletter-form input {
        flex: 1;
        padding: 12px 8px;
        border: none;
        border-radius: 30px 0 0 30px;
        font-size: 1rem;
    }

    .newsletter-form button {
        background: #0c56cf;
        color: white;
        border: none;
        padding: 0 20px;
        border-radius: 0 30px 30px 0;
        cursor: pointer;
        font-weight: 600;
        transition: var(--transition);
    }

        .newsletter-form button:hover {
            background: #0c56cf;
        }

.author-bio {
    display: flex;
    align-items: center;
    margin: 40px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    flex-wrap: wrap;
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    border: 3px solid #3498db;
}

.author-info {
    flex: 1;
}

    .author-info h3 {
        margin-bottom: 5px;
        color: #2c3e50;
    }

    .author-info p {
        font-size: 0.95rem;
        margin-bottom: 0px;
    }

.social-share {
    display: flex;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .blog-container {
        flex-direction: column;
    }

    .related-articles {
        min-width: auto;
    }

    .blog-content {
        padding: 10px;
    }

    .blog-title {
        font-size: 1.7rem;
    }

    .blog-meta {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        font-size: 0.9rem;
        flex-wrap: wrap;
        border-top: 1px solid #c7bfbf;
        padding-top: 10px;
        padding-bottom: 5px;
        border-bottom: 1px solid #c7bfbf;
        text-align: left;
        flex-direction: column;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-img {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .social-share {
        justify-content: center;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

        .newsletter-form input {
            border-radius: 30px;
            margin-bottom: 10px;
        }

        .newsletter-form button {
            border-radius: 30px;
            padding: 12px;
        }
}

/*index page start*/

.hero {
    background: linear-gradient(135deg, #182e70 0%, #cbcdcf 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
}

    .hero h1 {
        color: white;
        font-size: 2.8rem;
        max-width: 900px;
        margin: 0 auto 1.5rem;
        line-height: 60px;
    }

    .hero p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 2rem;
        opacity: 0.9;
    }

.search-bar {
    max-width: 600px;
    margin: 2rem auto 0;
    position: relative;
}

    .search-bar input {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 50px;
        border: none;
        font-size: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .search-bar button {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        background: #49780c;
        border: none;
        border-radius: 50px;
        padding: 0.6rem 1.5rem;
        color: white;
        font-weight: 600;
        cursor: pointer;
    }

        .search-bar button:hover {
            background: #4b268f;
        }

.categories {
    padding: 4rem 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2:after {
        left: 50%;
        transform: translateX(-50%);
    }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

.category-image {
    height: 180px;
    overflow: hidden;
}

    .category-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 1rem;
}

    .category-content h3 {
        margin-bottom: 0.75rem;
        font-size: 1.3rem;
        padding: 0px;
    }

    .category-content p {
        margin-bottom: 1rem;
    }

.btn {
    display: inline-block;
    background: #766a08;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
}

    .btn:hover {
        background: #4b268f;
        color: white;
    }

.btn-secondary {
    background: var(--secondary);
    border-color: var(--secondary);
}

    .btn-secondary:hover {
        color: var(--secondary);
    }


.category-blogs {
    padding: 1rem 0;
}

    .category-blogs:nth-child(even) {
        background-color: var(--light);
    }

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

    .category-header h2:after {
        left: 0;
        transform: none;
    }

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

    .article-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

.article-image {
    height: 200px;
    overflow: hidden;
}

    .article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: .5rem;
}

    .article-content a {
        color: #44413e;
        text-decoration: none;
    }

.article-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.article-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e9ecef;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.article-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    min-height: 3.5rem;
}

.article-content p {
    color: #575555;
    margin-bottom: 1.5rem;
    min-height: 4.5rem;
}





@media (max-width: 768px) {
    .category-blogs {
        padding: 1rem 0;
    }

    .header {
        color: white;
        padding: 0px;
    }

    .header-container {
        flex-direction: column;
        padding: 0.5rem 0;
    }

    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

        nav ul li {
            margin: 0.5rem;
        }

    .hero {
        padding: 7rem 0;
    }

        .hero h1 {
            font-size: 1.5rem;
            line-height: 34px;
        }

        .hero p {
            font-size: .9rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }

    .categories {
        padding: 1rem 0;
        background-color: white;
    }

    .category-content {
        padding: 10px;
    }

    .article-content h3 {
        margin-bottom: 0.75rem;
        font-size: 1.3rem;
        min-height: 3.5rem;
        line-height: 31px;
        padding: 0px;
        font-weight: 600;
    }

    .article-content p {
        color: #575555;
        margin-bottom: 1.5rem;
        min-height: 2rem;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }

        .category-header .btn {
            margin-top: 1rem;
        }

    .search-bar input {
        width: 100%;
        padding: 0.8rem 1rem;
        border-radius: 15px;
        border: none;
        font-size: 0.9rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .search-bar button {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        background: #49780c;
        border: none;
        border-radius: 50px;
        padding: 0.2rem 1rem;
        color: white;
        font-weight: 600;
        cursor: pointer;
    }
}

.author-url {
    font-size: 0.85rem;
    color: #2c5282;
    text-decoration: none;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s ease;
}

    .author-url:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232c5282"><path d="M19 19H5V5h7V3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z"/></svg>');
        background-size: contain;
    }

    .author-url:hover {
        color: #1a3a5f;
        text-decoration: underline;
    }

        .author-url:hover:before {
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231a3a5f"><path d="M19 19H5V5h7V3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z"/></svg>');
        }

/*Contact CSS*/
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .contact-info h2 {
        color: #1a3a8f;
        margin-bottom: 20px;
        font-size: 1.8rem;
    }

    .contact-info p {
        margin-bottom: 25px;
        font-size: 1.05rem;
    }

.email-box {
    background: #f0f5ff;
    border-left: 4px solid #1a3a8f;
    padding: 15px;
    margin: 25px 0;
    border-radius: 4px;
}

    .email-box a {
        color: #1a3a8f;
        font-weight: 600;
        text-decoration: none;
        font-size: 1.1rem;
    }

.contact-form {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #444;
    }

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s;
}

    .form-control:focus {
        border-color: #1a3a8f;
        box-shadow: 0 0 0 2px rgba(26, 58, 143, 0.2);
        outline: none;
    }

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.consent-box {
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
}

    .consent-box input {
        margin-right: 10px;
        margin-top: 4px;
    }

    .consent-box label {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.5;
    }

    .consent-box a {
        color: #1a3a8f;
        text-decoration: none;
    }

        .consent-box a:hover {
            text-decoration: underline;
        }

.btn-submit {
    background: linear-gradient(135deg, #1a3a8f 0%, #2d5cc5 100%);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    width: 100%;
    text-decoration: none;
    display: block;
    text-align: center;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(26, 58, 143, 0.3);
    }

.feedback-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.feedback-info {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .feedback-info h2 {
        color: #1a3a8f;
        margin-bottom: 20px;
        font-size: 1.8rem;
    }

    .feedback-info p {
        margin-bottom: 25px;
        font-size: 1.05rem;
    }



.feedback-form {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rating-section {
    margin: 20px 0;
}

.rating-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.rating-option {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .rating-option input {
        margin-right: 5px;
    }

.rating-title {
    font-weight: 500;
    margin-bottom: 10px;
    color: #444;
}
