:root {
  --primary-color: rgb(220, 38, 127);
  --secondary-color: rgb(236, 72, 153);
  --accent-color: rgb(251, 113, 133);
  --highlight-color: rgb(244, 63, 94);
  --text-dark: #333333;
  --text-light: #666666;
  --white: #ffffff;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
  padding: 0 15px;
}

@media (max-width: 768px) {
.col-md-7 {
flex: 0 0 100%;
max-width: 100%;
}
}

.align-items-center {
  align-items: center;
}

.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(75, 0, 130, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo a {
    color: var(--white);
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: -0.5px;
}

.nav-items {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-items a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-items a:hover {
    color: var(--accent-color);
}

.nav-items a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-items a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
.mobile-toggle {
display: flex;
}

.nav-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: rgba(75, 0, 130, 0.98);
transform: translateY(-100%);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}

.nav-menu.show {
transform: translateY(0);
opacity: 1;
visibility: visible;
}

.nav-items {
flex-direction: column;
padding: 30px;
gap: 20px;
}
}

.ftco-blocks-cover-1 .site-section-cover {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-top: 80px;
}

.ftco-blocks-cover-1 .site-section-cover,
.ftco-blocks-cover-1 .site-section-cover .container {
  position: relative;
  z-index: 2;
}

.ftco-blocks-cover-1 .site-section-cover,
.ftco-blocks-cover-1 .site-section-cover .container > .row {
  height: calc(95vh - 185px);
  min-height: 690px;
}

@media (max-width: 991.98px) {
  .ftco-blocks-cover-1 .site-section-cover,
  .ftco-blocks-cover-1 .site-section-cover .container > .row {
    height: calc(74vh - 185px);
    min-height: 620px;
  }
}

.ftco-blocks-cover-1 .site-section-cover.overlay {
  position: relative;
}

.ftco-blocks-cover-1 .site-section-cover.overlay:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.37);
  z-index: 1;
}

.ftco-blocks-cover-1 .col-md-7 {
    z-index: 3;
    position: relative;
}

.ftco-blocks-cover-1 p {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 300;
}

.ftco-blocks-cover-1 h1 {
    color: var(--white);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
}

.mb-3 {
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .ftco-blocks-cover-1 h1 {
        font-size: 40px;
    }
}

.btn {
  border-radius: 34px;
  font-size: .87rem;
  text-transform: uppercase;
  letter-spacing: .19rem;
  padding: 14px 24px;
  text-decoration: none;
  display: inline-block;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: #f4ad2d;
  border-color: #f4ad2d;
  color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    border-color: #f4ad2d;
    color: #f4ad2d;
}

.text-primary {
  color: #f4ad2d !important;
}

.main-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
}

.company-section h3 {
    color: var(--accent-color);
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 600;
}

.links-section h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 500;
}

.company-section p {
    line-height: 1.8;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-details {
    margin-top: 24px;
}

.contact-details p {
    margin-bottom: 8px;
}

.links-section ul {
    list-style: none;
    padding: 0;
}

.links-section ul li {
    margin-bottom: 8px;
}

.links-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.links-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 768px) {
.footer-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.nav-wrapper {
padding: 0 20px;
}

.footer-wrapper {
padding: 0 20px;
}
}











.problem-introduction-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.98) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.problem-introduction-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(75, 0, 130, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(45deg);
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.text-content {
    position: relative;
}

.problem-headline {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
}




.problem-description p {
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 24px;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.problem-description p:first-child {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.problem-description p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #1a1a1a;
    font-weight: 500;
}

.visual-element {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.problem-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(75, 0, 130, 0.2);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.problem-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.floating-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    border-radius: 50%;
    opacity: 0.7;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 968px) {
.content-wrapper {
grid-template-columns: 1fr;
gap: 50px;
text-align: center;
}

.problem-headline {
font-size: 36px;
}

.visual-element {
order: -1;
}

.problem-image {
max-width: 350px;
}
}

@media (max-width: 768px) {
.problem-introduction-section {
padding: 80px 0;
}

.problem-container {
padding: 0 20px;
}

.problem-headline {
font-size: 32px;
margin-bottom: 30px;
}

.problem-description p {
font-size: 16px;
}

.problem-description p:first-child {
font-size: 18px;
}

.floating-accent {
width: 80px;
height: 80px;
top: -15px;
right: -15px;
}
}













.solution-proposal-section {
    background: linear-gradient(225deg, var(--primary-color) 0%, var(--secondary-color) 60%, var(--accent-color) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.solution-proposal-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(-25deg);
}

.solution-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.solution-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.image-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
    transform: rotate(2deg);
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
}

.solution-image:hover {
    transform: rotate(-1deg) scale(1.03);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4);
}

.geometric-shape {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 85%);
    z-index: 1;
}

.accent-dot {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.content-block {
    position: relative;
}

.solution-headline {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 35px;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.solution-headline::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -20px;
    width: 6px;
    height: 60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
    border-radius: 3px;
}

.solution-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 22px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

.solution-text p:first-child {
    font-size: 19px;
    font-weight: 500;
    color: #ffffff;
}

.solution-text p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 968px) {
.solution-grid {
grid-template-columns: 1fr;
gap: 40px;
text-align: center;
}

.solution-headline {
font-size: 36px;
margin-bottom: 25px;
}

.solution-image {
max-width: 320px;
}
}

@media (max-width: 768px) {
.solution-proposal-section {
padding: 70px 0;
}

.solution-container {
padding: 0 20px;
}

.solution-headline {
font-size: 30px;
}

.solution-text p {
font-size: 16px;
}

.solution-text p:first-child {
font-size: 17px;
}

.geometric-shape {
width: 70px;
height: 70px;
top: -20px;
left: -20px;
}

.accent-dot {
width: 40px;
height: 40px;
bottom: -10px;
right: -10px;
}
}











.key-benefits-section {
    background: linear-gradient(160deg, rgba(248, 249, 250, 1) 0%, rgba(240, 242, 247, 1) 100%);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.key-benefits-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(123, 104, 238, 0.08) 0%, transparent 60%);
    border-radius: 50%;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.benefits-headline {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}



.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: #ffffff;
    padding: 35px 28px;
    border-radius: 18px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.benefit-card.card-1 { transform: rotate(-1deg); }
.benefit-card.card-2 { transform: rotate(1deg); }
.benefit-card.card-3 { transform: rotate(-0.5deg); }
.benefit-card.card-4 { transform: rotate(0.8deg); }
.benefit-card.card-5 { transform: rotate(-1.2deg); }

.benefit-card:hover.card-1,
.benefit-card:hover.card-2,
.benefit-card:hover.card-3,
.benefit-card:hover.card-4,
.benefit-card:hover.card-5 {
    transform: translateY(-8px) rotate(0deg);
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.8;
}

.benefit-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefit-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
    font-weight: 400;
}

.card-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.1) 0%, rgba(153, 50, 204, 0.15) 100%);
    border-radius: 50% 0 18px 0;
    z-index: 1;
}

.visual-accent {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.benefits-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(75, 0, 130, 0.15);
    transform: rotate(1.5deg);
    transition: transform 0.4s ease;
}

.benefits-image:hover {
    transform: rotate(0deg) scale(1.02);
}

@media (max-width: 768px) {
.key-benefits-section {
padding: 80px 0;
}

.benefits-container {
padding: 0 20px;
}

.benefits-headline {
font-size: 32px;
}

.benefits-grid {
grid-template-columns: 1fr;
gap: 25px;
margin-bottom: 50px;
}

.benefit-card {
padding: 30px 24px;
}

.benefit-card.card-1,
.benefit-card.card-2,
.benefit-card.card-3,
.benefit-card.card-4,
.benefit-card.card-5 {
transform: rotate(0deg);
}

.benefit-number {
font-size: 40px;
margin-bottom: 12px;
}

.benefit-title {
font-size: 20px;
margin-bottom: 10px;
}

.benefit-description {
font-size: 15px;
}

.benefits-image {
max-width: 350px;
transform: rotate(0deg);
}
}

@media (max-width: 480px) {
.benefits-grid {
grid-template-columns: 1fr;
}

.benefit-card {
padding: 25px 20px;
}
}








.workflow-format-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 40%, var(--accent-color) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.workflow-format-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    transform: rotate(30deg);
}

.workflow-format-section::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.03);
    clip-path: polygon(0% 0%, 100% 20%, 80% 100%, 0% 80%);
}

.workflow-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
}

.workflow-headline {
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.workflow-headline::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -15px;
    right: -15px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
}

.workflow-process {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 300px;
    gap: 40px;
    align-items: center;
    position: relative;
}

.process-step.step-2 {
    grid-template-columns: 80px 1fr 300px;
    direction: rtl;
}

.process-step.step-2 .step-content,
.process-step.step-2 .step-indicator {
    direction: ltr;
}

.process-step.step-4 {
    grid-template-columns: 80px 1fr 300px;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.step-connector {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    margin-top: 10px;
}

.process-step.step-4 .step-connector {
    display: none;
}

.step-content {
    padding: 20px 0;
}

.step-title {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.step-description {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.step-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    transform: rotate(1deg);
}

.process-step.step-2 .step-image {
    transform: rotate(-1.5deg);
}

.process-step.step-3 .step-image {
    transform: rotate(0.8deg);
}

.process-step.step-4 .step-image {
    transform: rotate(-1deg);
}

.step-image:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 968px) {
.process-step,
.process-step.step-2,
.process-step.step-4 {
grid-template-columns: 1fr;
gap: 25px;
text-align: center;
direction: ltr;
}

.workflow-headline {
font-size: 36px;
}

.step-indicator {
margin-bottom: 20px;
}

.step-connector {
display: none;
}

.step-image {
max-width: 250px;
}
}

@media (max-width: 768px) {
.workflow-format-section {
padding: 90px 0;
}

.workflow-container {
padding: 0 20px;
}

.section-intro {
margin-bottom: 60px;
}

.workflow-headline {
font-size: 32px;
}

.workflow-process {
gap: 40px;
}

.step-title {
font-size: 22px;
margin-bottom: 12px;
}

.step-description {
font-size: 16px;
}

.step-image {
max-width: 220px;
}

.step-number {
width: 50px;
height: 50px;
font-size: 16px;
}
}











/* Services Page Specific Styles */

.services-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    padding: 140px 0 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.services-hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(45deg);
}

.services-hero-overlay {
    position: relative;
    z-index: 2;
}

.services-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.services-hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .services-hero-section {
        padding: 120px 0 80px;
    }
    
    .services-hero-title {
        font-size: 40px;
        margin-bottom: 16px;
    }
    
    .services-hero-subtitle {
        font-size: 20px;
    }
}

/* Pricing Package Section */
.pricing-package-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 1) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.pricing-package-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 104, 238, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.package-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.package-header {
    margin-bottom: 40px;
}

.package-name {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
    position: relative;
}

.package-name::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -15px;
    width: 5px;
    height: 50px;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    border-radius: 3px;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    font-size: 18px;
    color: #666666;
    font-weight: 400;
}

.package-features {
    margin-bottom: 40px;
}

.package-features h3 {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 17px;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
}

.value-proposition {
    margin-bottom: 50px;
    padding: 35px;
    background: rgba(123, 104, 238, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

.value-proposition h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.value-proposition p {
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 18px;
}

.value-proposition p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #1a1a1a;
}

.package-cta {
    text-align: center;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    letter-spacing: 0.1em;
}

.package-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-wrapper {
    position: relative;
    display: inline-block;
}

.package-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(75, 0, 130, 0.2);
    transform: rotate(-2deg);
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
}

.package-image:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 40px 80px rgba(75, 0, 130, 0.3);
}

.visual-accent-shape {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 85%);
    opacity: 0.8;
    z-index: 1;
}

.floating-element {
    position: absolute;
    bottom: -20px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 968px) {
    .package-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .package-name {
        font-size: 36px;
    }
    
    .price-amount {
        font-size: 40px;
    }
    
    .visual-wrapper {
        order: -1;
    }
    
    .package-image {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .pricing-package-section {
        padding: 80px 0;
    }
    
    .pricing-container {
        padding: 0 20px;
    }
    
    .package-name {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .price-period {
        font-size: 16px;
    }
    
    .package-features h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .features-list li {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .value-proposition {
        padding: 25px 20px;
        margin-bottom: 40px;
    }
    
    .value-proposition h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .value-proposition p {
        font-size: 15px;
        margin-bottom: 15px;
    }
}

/* Investment Benefits Section */
.investment-benefits-section {
    background: linear-gradient(225deg, var(--primary-color) 0%, var(--secondary-color) 60%, var(--accent-color) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.investment-benefits-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    transform: rotate(-15deg);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    min-width: 80px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.benefit-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.benefit-text p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .investment-benefits-section {
        padding: 80px 0;
    }
    
    .benefits-container {
        padding: 0 20px;
    }
    
    .investment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-item {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .benefit-number {
        font-size: 40px;
        min-width: auto;
    }
    
    .benefit-text h4 {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .benefit-text p {
        font-size: 14px;
    }
}












/* Contacts Page Specific Styles */

.contacts-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    padding: 140px 0 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.contacts-hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(-45deg);
}

.contacts-hero-overlay {
    position: relative;
    z-index: 2;
}

.contacts-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.contacts-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contacts-hero-section {
        padding: 120px 0 80px;
    }
    
    .contacts-hero-title {
        font-size: 40px;
        margin-bottom: 16px;
    }
    
    .contacts-hero-subtitle {
        font-size: 18px;
    }
}

/* Contact Info Section */
.contact-info-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 1) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-info-section::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 104, 238, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--highlight-color) 100%);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-card:nth-child(1) {
    transform: rotate(-1deg);
}

.contact-card:nth-child(2) {
    transform: rotate(1deg);
}

.contact-card:nth-child(3) {
    transform: rotate(-0.5deg);
}

.contact-card:hover {
    transform: translateY(-10px) rotate(0deg);
}

.contact-card-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-card-content p {
    font-size: 18px;
    color: #2c2c2c;
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 80px 0;
    }
    
    .contact-info-container {
        padding: 0 20px;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-card {
        padding: 30px 25px;
    }
    
    .contact-card:nth-child(1),
    .contact-card:nth-child(2),
    .contact-card:nth-child(3) {
        transform: rotate(0deg);
    }
    
    .contact-card-header h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .contact-card-content p {
        font-size: 16px;
    }
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(225deg, var(--primary-color) 0%, var(--secondary-color) 60%, var(--accent-color) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -25%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    clip-path: polygon(0% 0%, 100% 20%, 80% 100%, 0% 80%);
    transform: rotate(25deg);
}

.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.form-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.form-intro {
    position: relative;
}

.form-headline {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.form-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.form-visual-accent {
    position: absolute;
    top: -20px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    padding: 15px 20px;
    border: 2px solid rgba(123, 104, 238, 0.2);
    border-radius: 10px;
    font-size: 16px;
    color: #2c2c2c;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(123, 104, 238, 0.1);
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-textarea::placeholder {
    color: #999999;
    font-style: italic;
}

.form-submit {
    margin-top: 10px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
    letter-spacing: 0.1em;
    width: 100%;
    justify-content: center;
}

@media (max-width: 968px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .form-headline {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .form-description {
        font-size: 16px;
    }
    
    .form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 80px 0;
    }
    
    .contact-form-container {
        padding: 0 20px;
    }
    
    .form-grid {
        gap: 40px;
    }
    
    .form-headline {
        font-size: 32px;
    }
    
    .form-wrapper {
        padding: 35px 25px;
        border-radius: 15px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    .form-label {
        font-size: 14px;
        margin-bottom: 6px;
    }
}














/* Privacy Policy Page Specific Styles */

.privacy-page-section {
    background: linear-gradient(160deg, rgba(248, 249, 250, 1) 0%, rgba(240, 242, 247, 1) 30%, rgba(255, 255, 255, 0.95) 70%, rgba(248, 249, 250, 1) 100%);
    padding: 120px 0 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.privacy-page-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(123, 104, 238, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.privacy-page-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: -5%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(153, 50, 204, 0.05) 0%, transparent 60%);
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 85%);
    transform: rotate(25deg);
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.privacy-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.privacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--highlight-color) 50%, var(--primary-color) 100%);
    border-radius: 25px 25px 0 0;
}

.privacy-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
    position: relative;
}

.privacy-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    border-radius: 2px;
}

.privacy-text {
    position: relative;
    z-index: 2;
}

.privacy-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 28px;
    text-align: justify;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.privacy-text p:first-child {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    padding-left: 20px;
    border-left: 4px solid var(--accent-color);
    background: rgba(123, 104, 238, 0.03);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 35px;
}

.privacy-text p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #1a1a1a;
    font-weight: 500;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(123, 104, 238, 0.2);
}

.privacy-decorative-element {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.1) 0%, rgba(153, 50, 204, 0.15) 100%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
}

@media (max-width: 968px) {
    .privacy-page-section {
        padding: 100px 0 80px;
    }
    
    .privacy-container {
        padding: 0 20px;
    }
    
    .privacy-content {
        padding: 50px 35px;
        border-radius: 20px;
    }
    
    .privacy-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .privacy-text p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .privacy-text p:first-child {
        font-size: 17px;
        padding: 18px;
        margin-bottom: 30px;
    }
    
    .privacy-decorative-element {
        width: 100px;
        height: 100px;
        bottom: -20px;
        right: -20px;
    }
}

@media (max-width: 768px) {
    .privacy-page-section {
        padding: 90px 0 70px;
    }
    
    .privacy-content {
        padding: 40px 25px;
        border-radius: 15px;
    }
    
    .privacy-title {
        font-size: 32px;
        margin-bottom: 35px;
    }
    
    .privacy-text p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .privacy-text p:first-child {
        font-size: 16px;
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .privacy-text p:last-child {
        font-size: 14px;
        padding-top: 15px;
    }
    
    .privacy-decorative-element {
        width: 80px;
        height: 80px;
        bottom: -15px;
        right: -15px;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 30px 20px;
    }
    
    .privacy-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .privacy-title::after {
        width: 60px;
        height: 2px;
        bottom: -10px;
    }
}















/* Terms and Conditions Page Specific Styles */

.terms-page-section {
    background: linear-gradient(135deg, rgba(240, 242, 247, 1) 0%, rgba(248, 249, 250, 0.98) 35%, rgba(255, 255, 255, 0.92) 65%, rgba(245, 247, 250, 1) 100%);
    padding: 120px 0 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.terms-page-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -8%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(75, 0, 130, 0.05) 0%, transparent 65%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: rotate 12s linear infinite;
}

.terms-page-section::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: -12%;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(153, 50, 204, 0.06) 0%, transparent 55%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: rotate(-15deg);
    animation: morph 10s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes morph {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(-15deg);
    }
    50% {
        border-radius: 70% 30% 40% 60% / 60% 40% 50% 50%;
        transform: rotate(15deg);
    }
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.terms-content {
    background: rgba(255, 255, 255, 0.88);
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.terms-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 30%, var(--accent-color) 70%, var(--highlight-color) 100%);
    border-radius: 30px 30px 0 0;
}

.terms-content::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(123, 104, 238, 0.15) 0%, rgba(153, 50, 204, 0.1) 100%);
    border-radius: 50%;
    z-index: 1;
}

.terms-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
    position: relative;
    z-index: 3;
}

.terms-title::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 30%, var(--highlight-color) 70%, transparent 100%);
    border-radius: 1px;
}

.terms-text {
    position: relative;
    z-index: 2;
}

.terms-text p {
    font-size: 17px;
    line-height: 1.85;
    color: #2c2c2c;
    margin-bottom: 26px;
    text-align: justify;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.terms-text p:first-child {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a1a;
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.08) 0%, rgba(153, 50, 204, 0.05) 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
    margin-bottom: 35px;
    position: relative;
}

.terms-text p:first-child::before {
    content: '⚠';
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 24px;
    color: var(--accent-color);
}

.terms-text p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #1a1a1a;
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid rgba(123, 104, 238, 0.15);
    font-style: italic;
    position: relative;
}

.terms-text p:last-child::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.terms-accent-element {
    position: absolute;
    bottom: -40px;
    right: -25px;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, rgba(123, 104, 238, 0.12) 0%, rgba(153, 50, 204, 0.08) 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    z-index: 1;
    opacity: 0.7;
    transform: rotate(25deg);
}

@media (max-width: 968px) {
    .terms-page-section {
        padding: 100px 0 80px;
    }
    
    .terms-container {
        padding: 0 20px;
    }
    
    .terms-content {
        padding: 50px 35px;
        border-radius: 25px;
    }
    
    .terms-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .terms-text p {
        font-size: 16px;
        margin-bottom: 22px;
    }
    
    .terms-text p:first-child {
        font-size: 17px;
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .terms-accent-element {
        width: 90px;
        height: 90px;
        bottom: -30px;
        right: -20px;
    }
}

@media (max-width: 768px) {
    .terms-page-section {
        padding: 90px 0 70px;
    }
    
    .terms-content {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .terms-title {
        font-size: 32px;
        margin-bottom: 35px;
    }
    
    .terms-text p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 18px;
        text-align: left;
    }
    
    .terms-text p:first-child {
        font-size: 16px;
        padding: 18px;
        margin-bottom: 25px;
    }
    
    .terms-text p:first-child::before {
        top: 18px;
        right: 18px;
        font-size: 20px;
    }
    
    .terms-text p:last-child {
        font-size: 14px;
        padding-top: 20px;
    }
    
    .terms-accent-element {
        width: 70px;
        height: 70px;
        bottom: -20px;
        right: -15px;
    }
}

@media (max-width: 480px) {
    .terms-content {
        padding: 30px 20px;
    }
    
    .terms-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .terms-title::after {
        width: 70px;
        bottom: -15px;
    }
}
















/* Thank You Page Specific Styles */

.thankyou-page-section {
    background: linear-gradient(145deg, rgba(248, 249, 250, 1) 0%, rgba(255, 255, 255, 0.95) 40%, rgba(240, 242, 247, 1) 100%);
    padding: 120px 0 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.thankyou-page-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(75, 0, 130, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    animation: pulse-gentle 4s ease-in-out infinite;
}

.thankyou-page-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 8%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(123, 104, 238, 0.08) 0%, rgba(153, 50, 204, 0.05) 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(45deg);
    animation: rotate-gentle 8s linear infinite;
}

@keyframes pulse-gentle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes rotate-gentle {
    from {
        transform: rotate(45deg);
    }
    to {
        transform: rotate(405deg);
    }
}

.thankyou-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.thankyou-content {
    background: rgba(255, 255, 255, 0.92);
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thankyou-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--highlight-color) 50%, var(--primary-color) 100%);
    border-radius: 25px 25px 0 0;
}

.success-icon {
    margin-bottom: 30px;
}

.check-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(123, 104, 238, 0.3);
    animation: success-bounce 0.6s ease-out;
}

@keyframes success-bounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.check-mark {
    width: 24px;
    height: 12px;
    border: 3px solid #ffffff;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    margin-top: -6px;
}

.thankyou-title {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
    position: relative;
}

.thankyou-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.thankyou-message {
    margin-bottom: 45px;
}

.thankyou-message p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.thankyou-message p:first-child {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a1a;
}

.thankyou-message p:last-child {
    margin-bottom: 0;
    color: #555555;
    font-style: italic;
}

.thankyou-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 14px 24px;
    border-radius: 34px;
    font-size: .87rem;
    text-transform: uppercase;
    letter-spacing: .19rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 104, 238, 0.3);
}

.thankyou-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.1) 0%, rgba(153, 50, 204, 0.15) 100%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.7;
}

@media (max-width: 968px) {
    .thankyou-page-section {
        padding: 100px 0 80px;
    }
    
    .thankyou-container {
        padding: 0 20px;
    }
    
    .thankyou-content {
        padding: 50px 35px;
        border-radius: 20px;
    }
    
    .thankyou-title {
        font-size: 36px;
        margin-bottom: 35px;
    }
    
    .check-circle {
        width: 70px;
        height: 70px;
    }
    
    .thankyou-message p {
        font-size: 16px;
        margin-bottom: 18px;
    }
    
    .thankyou-message p:first-child {
        font-size: 17px;
    }
    
    .thankyou-decoration {
        width: 80px;
        height: 80px;
        bottom: -15px;
        right: -15px;
    }
}

@media (max-width: 768px) {
    .thankyou-page-section {
        padding: 90px 0 70px;
        min-height: 70vh;
    }
    
    .thankyou-content {
        padding: 40px 25px;
        border-radius: 18px;
    }
    
    .thankyou-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .check-circle {
        width: 60px;
        height: 60px;
    }
    
    .check-mark {
        width: 20px;
        height: 10px;
        border-width: 2px;
        margin-top: -4px;
    }
    
    .thankyou-message {
        margin-bottom: 35px;
    }
    
    .thankyou-message p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .thankyou-message p:first-child {
        font-size: 16px;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
        padding: 16px 20px;
    }
    
    .thankyou-decoration {
        width: 60px;
        height: 60px;
        bottom: -10px;
        right: -10px;
    }
}

@media (max-width: 480px) {
    .thankyou-content {
        padding: 35px 20px;
    }
    
    .thankyou-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .success-icon {
        margin-bottom: 25px;
    }
    
    .check-circle {
        width: 50px;
        height: 50px;
    }
    
    .thankyou-title::after {
        width: 40px;
        height: 2px;
        bottom: -8px;
    }
}













/* Knowledge Base Page Specific Styles */

.knowledge-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    padding: 140px 0 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.knowledge-hero-section::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    transform: rotate(30deg);
}

.knowledge-hero-overlay {
    position: relative;
    z-index: 2;
}

.knowledge-hero-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.knowledge-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .knowledge-hero-section {
        padding: 120px 0 80px;
    }
    
    .knowledge-hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .knowledge-hero-subtitle {
        font-size: 18px;
    }
}

/* Articles Section */
.articles-section {
    background: linear-gradient(160deg, rgba(248, 249, 250, 1) 0%, rgba(240, 242, 247, 1) 30%, rgba(255, 255, 255, 0.95) 70%, rgba(248, 249, 250, 1) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.articles-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -8%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(123, 104, 238, 0.06) 0%, transparent 65%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.articles-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -5%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(153, 50, 204, 0.08) 0%, transparent 60%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(25deg);
    animation: rotate 15s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-25px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(25deg);
    }
    to {
        transform: rotate(385deg);
    }
}

.articles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.article-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.article-card.card-free {
    transform: rotate(-0.5deg);
}

.article-card.card-premium {
    transform: rotate(0.5deg);
}

.article-card:nth-child(2) {
    transform: rotate(0.8deg);
}

.article-card:nth-child(4) {
    transform: rotate(-0.8deg);
}

.article-card:hover {
    transform: translateY(-8px) rotate(0deg);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(123, 104, 238, 0.3);
}

.card-badge.premium {
    background: linear-gradient(135deg, #f4ad2d 0%, #e6941a 100%);
    box-shadow: 0 4px 12px rgba(244, 173, 45, 0.3);
}

.article-content {
    position: relative;
    z-index: 2;
}

.article-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 15px;
    margin-top: 0;
    padding-right: 100px;
}

.article-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(123, 104, 238, 0.2);
}

.reading-time {
    font-size: 14px;
    color: #777777;
    font-weight: 500;
}

.article-category {
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(123, 104, 238, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
}

.article-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
    padding: 12px 20px;
    background: rgba(123, 104, 238, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.article-link:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateX(5px);
    border-color: var(--accent-color);
}

.article-link.premium-link {
    color: #f4ad2d;
    background: rgba(244, 173, 45, 0.1);
    border-color: transparent;
}

.article-link.premium-link:hover {
    background: #f4ad2d;
    color: #ffffff;
    border-color: #f4ad2d;
}

.link-arrow {
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.article-link:hover .link-arrow {
    transform: translateX(3px);
}

.card-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.15) 0%, rgba(153, 50, 204, 0.1) 100%);
    border-radius: 50% 0 20px 0;
    z-index: 1;
}

.card-accent.premium-accent {
    background: linear-gradient(135deg, rgba(244, 173, 45, 0.15) 0%, rgba(230, 148, 26, 0.1) 100%);
}

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(244, 173, 45, 0.05);
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

.lock-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .articles-section {
        padding: 80px 0;
    }
    
    .articles-container {
        padding: 0 20px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .article-card {
        padding: 30px 25px;
        border-radius: 18px;
    }
    
    .article-card.card-free,
    .article-card.card-premium,
    .article-card:nth-child(2),
    .article-card:nth-child(4) {
        transform: rotate(0deg);
    }
    
    .article-title {
        font-size: 20px;
        padding-right: 80px;
        margin-bottom: 12px;
    }
    
    .article-excerpt {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .article-link {
        font-size: 15px;
        padding: 10px 16px;
    }
    
    .card-badge {
        top: 15px;
        right: 15px;
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .lock-icon {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-card {
        padding: 25px 20px;
    }
    
    .article-title {
        font-size: 18px;
        padding-right: 70px;
    }
    
    .article-excerpt {
        font-size: 14px;
    }
    
    .card-badge {
        padding: 4px 8px;
        font-size: 10px;
    }
}















/* Article Page Specific Styles */

.article-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.article-hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(20deg);
}

.article-hero-overlay {
    position: relative;
    z-index: 2;
}

.article-breadcrumb {
    margin-bottom: 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.article-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb-separator {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.6);
}

.article-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.article-meta-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.meta-separator {
    color: rgba(255, 255, 255, 0.5);
}

.article-date,
.article-reading-time,
.article-author {
    font-weight: 500;
}

@media (max-width: 768px) {
    .article-hero-section {
        padding: 100px 0 60px;
    }
    
    .article-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .article-breadcrumb {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .article-meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        font-size: 14px;
    }
    
    .meta-separator {
        display: none;
    }
}

/* Article Content Section */
.article-content-section {
    background: linear-gradient(160deg, rgba(248, 249, 250, 1) 0%, rgba(255, 255, 255, 0.98) 50%, rgba(248, 249, 250, 1) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.article-content-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(123, 104, 238, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.article-content-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: -3%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(153, 50, 204, 0.05) 0%, transparent 60%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    transform: rotate(15deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.article-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
}

.article-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    border-radius: 20px 20px 0 0;
}

.article-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(123, 104, 238, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

.article-intro p {
    font-size: 19px;
    line-height: 1.7;
    color: #1a1a1a;
    font-weight: 500;
    margin: 0;
}

.article-body p {
    font-size: 17px;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 24px;
    text-align: justify;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.article-body h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 45px 0 25px 0;
    line-height: 1.3;
    position: relative;
    padding-left: 20px;
}

.article-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    border-radius: 2px;
}

.article-conclusion {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.08) 0%, rgba(153, 50, 204, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(123, 104, 238, 0.2);
}

.article-conclusion p {
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

.article-cta {
    margin-top: 50px;
    text-align: center;
    padding: 40px 35px;
    background: rgba(244, 173, 45, 0.1);
    border-radius: 18px;
    border: 2px solid rgba(244, 173, 45, 0.2);
}

.article-cta h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.article-cta p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 25px;
}

/* Sidebar Styles */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.related-articles {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.related-articles h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-item {
    display: block;
    padding: 18px;
    background: rgba(123, 104, 238, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(123, 104, 238, 0.1);
}

.related-item:hover {
    background: rgba(123, 104, 238, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 104, 238, 0.2);
}

.related-item.premium {
    background: rgba(244, 173, 45, 0.05);
    border-color: rgba(244, 173, 45, 0.1);
}

.related-item.premium:hover {
    background: rgba(244, 173, 45, 0.1);
    box-shadow: 0 5px 15px rgba(244, 173, 45, 0.2);
}

.related-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.4;
}

.related-item span {
    font-size: 13px;
    color: #777777;
    font-weight: 500;
}

.related-item.premium span {
    color: #f4ad2d;
    font-weight: 600;
}

.article-navigation {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-button {
    display: block;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(123, 104, 238, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nav-button:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 104, 238, 0.3);
}

@media (max-width: 968px) {
    .article-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .article-content {
        padding: 40px 30px;
        border-radius: 18px;
    }
    
    .article-intro {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .article-intro p {
        font-size: 17px;
    }
    
    .article-body p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .article-body h2 {
        font-size: 24px;
        margin: 35px 0 20px 0;
        padding-left: 16px;
    }
    
    .article-cta {
        padding: 30px 25px;
        margin-top: 40px;
    }
    
    .article-cta h3 {
        font-size: 22px;
    }
    
    .article-sidebar {
        order: -1;
    }
    
    .article-navigation {
        flex-direction: row;
        gap: 10px;
    }
    
    .nav-button {
        flex: 1;
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .article-content-section {
        padding: 60px 0 80px;
    }
    
    .article-content {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .article-intro {
        padding: 18px;
        margin-bottom: 25px;
    }
    
    .article-intro p {
        font-size: 16px;
    }
    
    .article-body p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 18px;
        text-align: left;
    }
    
    .article-body h2 {
        font-size: 22px;
        margin: 30px 0 18px 0;
        padding-left: 14px;
    }
    
    .article-conclusion p {
        font-size: 16px;
    }
    
    .article-cta {
        padding: 25px 20px;
    }
    
    .article-cta h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .article-cta p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .related-articles {
        padding: 25px 20px;
    }
    
    .related-item {
        padding: 15px;
    }
    
    .related-item h5 {
        font-size: 15px;
    }
    
    .nav-button {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .article-navigation {
        flex-direction: column;
        gap: 12px;
    }
    
    .nav-button {
        font-size: 14px;
        padding: 12px 16px;
    }
}









.cookie-alert {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(75, 0, 130, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--accent-color);
}

.cookie-alert.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn.accept {
    background: var(--accent-color);
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .cookie-content p {
        font-size: 14px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 120px;
    }
}