@font-face {
    font-family: 'RobotoExtraBold';
    src: url(fonts/Roboto-Black.ttf) format('truetype');
}

@font-face {
    font-family: 'RobotoLightItalic';
    src: url(fonts/Roboto-LightItalic.ttf) format('truetype');
}

@font-face {
    font-family: 'RobotoLight';
    src: url(fonts/Roboto-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'RobotoRegular';
    src: url(fonts/Roboto-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'RobotoBold';
    src: url(fonts/Roboto-Bold.ttf) format('truetype');
}

html {
    scroll-behavior: smooth;
}

.back-to-top {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #C89B3C;
    padding: 15px;
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
}

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

body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "width" 100;
}

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

.header {
    background-color: #1f2937;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #f9faf8;
    font-size: 24px;
    font-weight: 700;
}

.nav {
    display: block; 
}

.nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.nav a:hover {
    color: #f9faf8;
}

.hero {
    background-color: #1f2937;
    padding: 80px 0;
}

.hero-content {
    display: flex;
    gap: 48px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-title {
    color: #f9faf8;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-family: 'RobotoRegular', sans-serif;
    color: #e5e7eb;
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn {
    padding: 10px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-primary {
    background-color: #3882f6;
    color: white;
}

.btn-primary:hover {
    background-color: #2563eb;
}

.hero-image {
    background-color: #1F2937;
    height: 240px;
    display: flex;
    justify-content: center;
    color: #e5e7eb;
    font-size: 18px;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: #3882f6;
}

.footer {
    background-color: #1f2937;
    padding: 32px 0;
    text-align: center;
}

.footer p {
    color: #e5e7eb;
    font-size: 16px;
}

.info-section {
    padding-bottom: 64px;
}

.info-heading {
    font-family: 'RobotoExtraBold', sans-serif;
    color: #1F2937;
    font-size: 36px;
    display: flex;
    justify-content: center;
    margin: 32px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.card p {
    font-family: 'RobotoRegular', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1F2937;
    font-size: 18px;
}

.card {
    text-align: center;
}

.card-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
}

.quote-section {
    padding-bottom: 64px;
}

.quotes {
    color: #1F2937;
    background-color: #E5E7EB;
    padding: 100px;
}

.quote {
    font-family: 'RobotoLightItalic', sans-serif;
    font-size: 36px;
    padding: 24px;
}

.quote-author {
    font-family: 'RobotoBold', sans-serif;
    text-align: right;
    font-size: 24px;
    padding: 24px;
}

.action {
    font-family: 'RobotoLight', sans-serif;
    padding-bottom: 64px;
}

.action-style {
    background-color: #3882F6;
    color: #F9FAF8;
    padding: 48px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    width: 70%;
}

.action-style h3 {
    margin: 0;
}

.action-style p {
    margin: 4px 0 0 0;
}

button {
    font-family: 'RobotoBold', sans-serif;
    background-color: #3882F6;
    color: #F9FAF8;
    border-radius: 8px;
    border:2px solid #F9FAF8;
    padding: 8px 24px;
}

.dropdown {
  float:inline-start;
  overflow: hidden;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #F9FAF8;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 8px 8px;
  text-decoration: none;
  display: block;
  text-align: left;
  width: 100%;
}

.dropdown-content a:hover {
  background-color: #1F2937;
}

.dropdown:hover .dropdown-content {
  display: block;
}

#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 24px;
  color: #F9FAF8;
  cursor: pointer;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-image {
        width: 100%;
    }

    .hamburger {
        display: block;
        font-size: 24px;
        color: #F9FAF8;
        cursor: pointer;
    }

    .nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #F9FAF8;
        text-align: center;
    }

    .nav a {
        color: #1F2937;
    }

    .nav a:hover {
        color: #3882F6;
    }
    .nav ul {
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
        color: #1F2937;
    }

    #menu-toggle:checked ~ .nav {
        display: block;
    }

    .cards {
        display: grid;
        justify-items: center;
        grid-template-columns: repeat(2, 1fr);
    }
}