/* Global Variables */
:root {
    --primary-color: #2e3192;
    --secondary-color: #ed1b24;
    --text-color: #333;
    --background-light: #ffffff;
    --background-gray: #f8fafc;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
}

/* About Us Section */
.about-us {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 15px var(--shadow-light);
    line-height: 1.7;
    color: var(--text-color);
}

.about-us h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    text-align: center;
}

.about-us h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.about-us p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-us ul {
    margin: 1rem 0 1.25rem 1.5rem;
}

.about-us ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.875rem;
}

.about-us ul li:before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0.3125rem;
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Feature Box */
.feature-box {
    background: var(--background-gray);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.625rem 1.25rem var(--shadow-medium);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Founder Message */
.founder-message {
    background-color: var(--background-gray);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
    font-style: italic;
    position: relative;
}

.founder-message:before {
    content: '"';
    font-size: 5rem;
    color: rgba(46, 49, 146, 0.1);
    position: absolute;
    top: 0.625rem;
    left: 1.25rem;
    font-family: serif;
}

.founder-signature {
    font-weight: 600;
    margin-top: 1.25rem;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(46, 49, 146, 0.8), rgba(46, 49, 146, 0.8)), 
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: var(--background-light);
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 2.5rem;
    border-radius: 0.5rem;
}

.hero-section h1 {
    font-size: 2.625rem;
    margin-bottom: 1.25rem;
}

/* Team Section */
.team-image {
    border-radius: 0.5rem;
    margin: 1.25rem 0;
    box-shadow: 0 0.3125rem 0.9375rem var(--shadow-medium);
}

.values-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 2rem 0;
}

.value-item {
    flex-basis: 30%;
    text-align: center;
    margin-bottom: 2rem;
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Team Section Styles */
.team-section {
    margin: 3rem 0;
    padding: 2rem 0;
    background-color: var(--background-gray);
    border-radius: 0.5rem;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.team-member {
    flex: 0 0 calc(25% - 2rem);
    text-align: center;
    margin-bottom: 2rem;
}

.team-member-image {
    width: 11.25rem;
    height: 11.25rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 5px solid var(--background-light);
    box-shadow: 0 0.3125rem 0.9375rem var(--shadow-medium);
    transition: transform 0.3s ease;
}

.team-member-image:hover {
    transform: scale(1.05);
}

.team-member h4 {
    margin: 0.9375rem 0 0.3125rem;
    color: var(--primary-color);
}

.team-member p {
    color: #7f8c8d;
    font-size: 0.875rem;
}

.social-links {
    margin-top: 0.9375rem;
}

.social-links a {
    color: var(--primary-color);
    margin: 0 0.3125rem;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.department-title {
    text-align: center;
    margin: 3rem 0 2rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    position: relative;
}

.department-title:after {
    content: "";
    display: block;
    width: 5rem;
    height: 0.1875rem;
    background: var(--secondary-color);
    margin: 0.625rem auto 0;
}

/* Service Card */
.service-card {
    background: var(--background-light);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 0.3125rem 0.9375rem var(--shadow-light);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.625rem 1.5625rem var(--shadow-medium);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

/* Benefits List */
.benefits-list {
    list-style-type: none;
    padding-left: 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.benefits-list li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.625rem;
}

/* Terms and Conditions */
.terms-conditions {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.625rem var(--shadow-medium);
    color: var(--text-color);
    line-height: 1.6;
}

.terms-conditions h2 {
    color: var(--primary-color);
    margin-bottom: 0.625rem;
    font-size: 1.75rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.625rem;
}

.terms-conditions h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 0.9375rem;
    font-size: 1.25rem;
}

.terms-conditions p {
    margin-bottom: 0.9375rem;
}

.terms-conditions ul {
    margin: 0.9375rem 0 0.9375rem 1.25rem;
}

.terms-conditions ul li {
    margin-bottom: 0.5rem;
}

.terms-conditions a {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-conditions a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Refund Policy */
.refund-policy {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.9375rem var(--shadow-light);
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.refund-policy h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.625rem;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
}

.refund-policy h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.9375rem;
    font-size: 1.25rem;
}

.refund-policy p {
    margin-bottom: 0.9375rem;
    font-size: 1rem;
}

.refund-policy ul {
    margin: 0.9375rem 0 1.25rem 1.5rem;
}

.refund-policy ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0.9375rem;
}

.refund-policy ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.refund-policy a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.refund-policy a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Privacy Policy */
.privacy-policy {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.9375rem var(--shadow-light);
    line-height: 1.7;
    color: var(--text-color);
}

.privacy-policy h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.625rem;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
}

.privacy-policy h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.9375rem;
    font-size: 1.25rem;
}

.privacy-policy p {
    margin-bottom: 0.9375rem;
    font-size: 1rem;
}

.privacy-policy ul {
    margin: 0.9375rem 0 1.25rem 1.5rem;
}

.privacy-policy ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0.9375rem;
}

.privacy-policy ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.privacy-policy a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.privacy-policy a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Effective Date */
.effective-date {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 1.25rem;
}

/* Media Queries */
@media (max-width: 1200px) {
    .team-member {
        flex: 0 0 calc(33.333% - 2rem);
    }
}

@media (max-width: 768px) {
    .about-us, .refund-policy, .privacy-policy, .terms-conditions {
        padding: 1.5rem;
    }

    .about-us h2, .refund-policy h2, .privacy-policy h2, .terms-conditions h2 {
        font-size: 1.5rem;
    }

    .about-us h3, .refund-policy h3, .privacy-policy h3, .terms-conditions h3 {
        font-size: 1.125rem;
    }

    .value-item {
        flex-basis: 100%;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .team-member {
        flex: 0 0 calc(50% - 2rem);
    }

    .team-member-image {
        width: 8.75rem;
        height: 8.75rem;
    }

    .service-card {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .team-member {
        flex: 0 0 100%;
    }
}

/* Global Variables */
:root {
    --primary-color: #2e3192;
    --secondary-color: #ed1b24;
    --text-color: #333;
    --background-light: #ffffff;
    --background-gray: #f8fafc;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
}

/* Custom Cursor */
.custom-cursor__cursor {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.custom-cursor__cursor-two {
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.preloader__image {
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Page Wrapper */
.page-wrapper {
    padding-top: 100px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(46, 49, 146, 0.8), rgba(46, 49, 146, 0.8)), 
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: var(--background-light);
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 2.5rem;
    border-radius: 0.5rem;
}

.hero-section h1 {
    font-size: 2.625rem;
    margin-bottom: 1.25rem;
    color: var(--background-light);
}

.hero-section p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Us Section */
.about-us {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 15px var(--shadow-light);
    line-height: 1.7;
    color: var(--text-color);
}

.about-us h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    text-align: center;
}

/* Service Card */
.service-card {
    background: var(--background-light);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 0.3125rem 0.9375rem var(--shadow-light);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.625rem 1.5625rem var(--shadow-medium);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 0.9375rem;
    font-size: 1.25rem;
}

.service-card p {
    margin-bottom: 0.9375rem;
    font-size: 1rem;
}

/* Benefits List */
.benefits-list {
    list-style-type: none;
    padding-left: 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.benefits-list li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.625rem;
}

/* Values Section */
.values-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 2rem 0;
}

.value-item {
    flex-basis: 30%;
    text-align: center;
    margin-bottom: 2rem;
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.9375rem;
    font-size: 1.25rem;
}

.value-item p {
    font-size: 1rem;
}

/* Feature Box */
.feature-box {
    background: var(--background-gray);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.625rem 1.25rem var(--shadow-medium);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: var(--primary-color);
    margin-bottom: 0.9375rem;
    font-size: 1.25rem;
}

/* Founder Message */
.founder-message {
    background-color: var(--background-gray);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
    font-style: italic;
    position: relative;
}

.founder-message:before {
    content: '"';
    font-size: 5rem;
    color: rgba(46, 49, 146, 0.1);
    position: absolute;
    top: 0.625rem;
    left: 1.25rem;
    font-family: serif;
}

.founder-message h3 {
    color: var(--primary-color);
    margin-bottom: 0.9375rem;
    font-size: 1.25rem;
}

.founder-message p {
    margin-bottom: 0.9375rem;
    font-size: 1rem;
}

.founder-signature {
    font-weight: 600;
    margin-top: 1.25rem;
    color: var(--primary-color);
}

.founder-signature img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    float: left;
    margin-right: 15px;
}

/* Media Queries */
@media (max-width: 768px) {
    .page-wrapper {
        padding-top: 80px;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .about-us {
        padding: 1.5rem;
    }

    .about-us h2 {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .value-item {
        flex-basis: 100%;
    }

    .feature-box {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .value-item {
        flex-basis: 100%;
    }

    .service-card {
        padding: 1rem;
    }

    .founder-signature img {
        width: 60px;
        height: 60px;
    }
}