/* ==========================================================================
   CSS RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f7f7f7;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.elementor {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    min-height: 100vh;
}

.e-con {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    position: relative;
}

/* ==========================================================================
   WIDGET STYLES
   ========================================================================== */
.elementor-widget {
    margin-bottom: 25px;
    width: 100%;
}

.elementor-heading-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 15px;
}

.elementor-widget-image {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.elementor-widget-image img {
    border-radius: 8px;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.elementor-widget-button {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.elementor-button {
    background-color: #cc0000;
    color: #fff !important;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.2);
    transition: transform 0.2s;
}

.elementor-button:hover {
    transform: scale(1.05);
}

.header {
    width: 100%;
    background: #fff;
    border-bottom: 2px solid #cc0000;
    padding: 15px;
    margin-bottom: 30px;
}

.logo-main {
    color: #cc0000;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
}

.footer-container {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    margin-top: auto;
    width: 100%;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
    margin-bottom: 15px;
}

.testimonial-box {
    background: #fff;
    border: 1px solid #dddfe2;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: background 0.2s, transform 0.2s;
}

.testimonial-link:hover .testimonial-box {
    background: #f0f2f5;
    transform: translateY(-2px);
    border-color: #1877f2;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.testimonial-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.testimonial-name {
    color: #1877f2;
    font-weight: bold;
}

/* ==========================================================================
   DISCOVERY BOX
   ========================================================================== */
.discovery-box {
    background-color: #fff9e6;
    border: 1px solid #ffe58f;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 30px 0;
}

.discovery-box p {
    color: #856404;
    font-weight: 600;
}