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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Section */
.hero-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5f87 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 500px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.profile-image {
    width: 300px;
    height: 400px;
    background: linear-gradient(45deg, #4a6fa5, #6b8bc7);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.profile-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.hero-right {
    flex: 1;
    position: relative;
}

.brand-header {
    margin-bottom: 40px;
}

.brand-name {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.brand-tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

.hero-description {
    margin-top: 30px;
}

.hero-description h2 {
    font-size: 1.8rem;
    color: #e8914c;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 500px;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e8914c, #d4843a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(232, 145, 76, 0.3);
}

.logo-icon::before {
    content: '';
    width: 40px;
    height: 20px;
    background: white;
    border-radius: 10px;
}

.decorative-shapes {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.1;
}

.shape {
    width: 200px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    margin: 20px 0;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(2) {
    animation-delay: 2s;
    transform: scale(0.8);
}

.shape:nth-child(3) {
    animation-delay: 4s;
    transform: scale(0.6);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Section */
.services-section {
    background: #1e3a5f;
    color: white;
    padding: 80px 0;
}

.services-header {
    text-align: left;
    margin-bottom: 50px;
}

.services-title {
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.services-subtitle {
    font-size: 2rem;
    color: #e8914c;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-item {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #e8914c, #d4843a);
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.service-title {
    text-transform: uppercase;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #e8914c;
}

.service-description {
    line-height: 1.6;
    opacity: 0.9;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #e8914c;
}

/* Methodology Section */
.methodology-section {
    background: #f5f7fa;
    padding: 80px 0;
}

.methodology-title {
    text-transform: uppercase;
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 60px;
    font-weight: 500;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.methodology-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.methodology-item:hover {
    transform: translateY(-10px);
}

.methodology-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4a6fa5, #6b8bc7);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.methodology-item-title {
    text-transform: uppercase;
    font-size: 1.3rem;
    color: #1e3a5f;
    margin-bottom: 15px;
    font-weight: 600;
}

.methodology-description {
    color: #666;
    line-height: 1.6;
}

/* Results Section */
.results-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
}

.results-header {
    text-align: center;
    margin-bottom: 60px;
}

.results-title {
    font-size: 2.5rem;
    color: #1e3a5f;
    font-weight: 600;
    margin-bottom: 20px;
}

.results-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.result-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.result-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #e8914c, #d4843a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.result-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.result-item:hover::before {
    transform: scaleX(1);
}

.result-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #e8914c, #d4843a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
}

.result-title {
    text-transform: uppercase;
    font-size: 1.3rem;
    color: #1e3a5f;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.result-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.credibility-banner {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5f87 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.credibility-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 145, 76, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.credibility-content {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.credibility-icon {
    font-size: 3rem;
    background: linear-gradient(45deg, #e8914c, #d4843a);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.credibility-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #e8914c;
}

.credibility-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #e8914c 100%);
    padding: 80px 0;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-left {
    padding-right: 40px;
}

.contact-title {
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-right {
    background: rgba(255,255,255,0.1);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.cta-title {
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1e3a5f;
}

.cta-button {
    text-transform: uppercase;
    background: linear-gradient(45deg, #e8914c, #d4843a);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232, 145, 76, 0.4);
}

/* Footer */
.footer {
    background: #0f1e2e;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info {
    font-size: 1.1rem;
}

.star-icon {
    color: #e8914c;
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .credibility-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .brand-name {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-left {
        padding-right: 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-image {
        width: 200px;
        height: 260px;
    }
    .hero-section {
        padding: 30px 0;
    }
    .hero-description h2 {
        font-size: 1.3rem;
    }
    .hero-description p {
        font-size: 1rem;
        max-width: 100%;
    }
    .brand-header img {
        height: 60px !important;
    }
    .decorative-shapes {
        display: none;
    }
    .service-item {
        padding: 20px;
    }
    .methodology-item {
        padding: 20px;
    }
    .result-item {
        padding: 25px 10px;
    }
    .credibility-banner {
        padding: 20px;
    }
    .contact-right {
        padding: 30px 10px;
    }
    .cta-title {
        font-size: 1.2rem;
    }
    .cta-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
    .contact-title {
        font-size: 1.5rem;
    }
    .footer {
        padding: 20px 0;
    }
    .footer-content {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    .profile-image {
        width: 120px;
        height: 160px;
    }
    .brand-header img {
        height: 40px !important;
    }
    .hero-section {
        padding: 15px 0;
    }
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .methodology-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    .result-number {
        font-size: 2rem;
    }
    .results-title, .methodology-title, .contact-title, .services-title {
        font-size: 1.6rem;
        text-align: center;
    }
    /* .services-title {
        font-size: 1.2rem;
    } */
    .results-subtitle, .methodology-subtitle, .contact-subtitle, .services-subtitle {
        text-align: center;
        font-size: 1.2rem;
    }
}