/* Reset & Base Styles */
:root {
    --color-primary: #2563eb;
    --color-secondary: #1e40af;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-background: #ffffff;
    --color-background-alt: #f3f4f6;
    --color-border: #e5e7eb;
    --color-link: #2563eb;
    --color-link-hover: #1e40af;
    --spacing-base: 1rem;
    --border-radius: 0.5rem;
    --max-width: 1200px;
    --transition: all 0.3s ease;
    --black: #191a23;
 --dark-grey: #292a32;
 --yellow: #FDCB2C;
  --yellow: #FDCB2C;
  --card-bg-grey: #f3f3f3;
  --dark-grey: #292a32;
}

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

li {
    list-style: none;
  }

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-base);
}

a {
    color: var(--color-link);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-link-hover);
}

/* Header Styles */
.header {
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-base);
    height: 80px;
}

.header__logo img {
    max-height: 60px;
    width: auto;
}

.header__nav {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.nav__link:hover {
    color: var(--color-primary);
    background-color: var(--color-background-alt);
}

/* Privacy Hero Section */
.privacy-hero {
    background-color: var(--color-background-alt);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.privacy-hero__title {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.privacy-hero__date {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* Privacy Content Styles */
.privacy-content {
    padding: 4rem 0;
}

.privacy-card {
    background-color: var(--color-background);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.privacy-introduction {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--color-background);
    border-radius: var(--border-radius);
}

.privacy-section__title {
    font-size: 1.75rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
}

.privacy-section__content {
    padding: 1rem 0;
}

.privacy-section__content h3 {
    color: var(--color-text);
    margin: 2rem 0 1rem;
    font-size: 1.25rem;
}

.privacy-section__content h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.privacy-section__content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.privacy-section__content ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

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

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.usage-item {
    background-color: var(--color-background-alt);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.usage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.right-item {
    background-color: var(--color-background-alt);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background-color: var(--color-background-alt);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-link {
    display: block;
    margin-top: 0.5rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* Footer Styles */
footer {
    background-color: var(--black);
    padding: 3rem;
    border-radius: 45px;
    list-style-type: none;
  }
  
  .footer_top,
  .footer_top_logo,
  .footer_social_icons {
    display: flex;
    align-items: center;
  }
  
  
  .footer_top {
    justify-content: space-between;
  }
  
  .footer_nav_list_container .footer_nav_list {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .footer_nav_list .footer_nav_list-list_item {
    margin-right: 10px;
  }
  
  .footer_nav_list .footer_nav_list-list_item a {
    color: #fff;
    text-transform: capitalize;
    font-size: 18px;
  }
  
  .footer_nav_list-list_item a::after {
    background-color: #fff;
  }
  
  .footer_social_icons {
    gap: 20px;
  }
  
  .footer_social_icons img {
    cursor: pointer;
  }
  
  .footer_social_icons img:hover {
    box-shadow: 1px 1px 7px #fff;
  }
  
  footer .footer_middle {
    margin-top: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .footer_middle .footer_address,
  .footer_address .address_wrapper {
    display: flex;
    flex-direction: column;
  }
  
  .footer_middle .footer_address {
    gap: 27px;
  }
  
  .footer_address div h3 {
    font-size: 20px;
    background-color: var(--yellow);
    width: fit-content;
  }
  
  .footer_address .address_wrapper {
    gap: 20px;
  }
  
  .footer_address .address_wrapper,
  .address_wrapper .email_address a,
  .address_wrapper .phone_num a {
    color: #fff;
  }
  
  .address_wrapper .email_address a,
  .address_wrapper .phone_num a {
    font-size: 18px;
  }
  
  .address_wrapper .email_address a:hover,
  .address_wrapper .phone_num a:hover {
    text-decoration: underline;
  }
  
  .address_wrapper .location {
    display: flex;
    flex-direction: column;
  }
  
  .footer_middle .newsletter_sub {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
  }
  
  
  footer .footer_bottom {
    margin-top: 50px;
    height: 78px;
    border-top: 1px solid #fff;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    color: #fff;
    font-size: 18px;
  }
  
  .footer_bottom .copyright {
    display: flex;
    gap: 40px;
  }
  
  .copyright .privacy_policy {
    text-decoration: underline;
    cursor: pointer;
  }

/* Print Styles */
@media print {
    .header,
    .footer {
        display: none;
    }

    .privacy-hero {
        padding: 1rem 0;
    }

    .privacy-card {
        box-shadow: none;
    }

    .usage-item,
    .right-item,
    .contact-card {
        break-inside: avoid;
    }
}