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

body {
    font-family: serif;
    background-color: #F5F1EB;
    color: #4A4A4A;
    line-height: 1.6;
}

/* Typography */
h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

p {
    font-size: 16px;
    margin-bottom: 16px;
}

/* Navigation */
nav {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Three equal columns */
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    grid-column: 1;
    justify-self: start; /* Align to the left */
    padding-left: 20px; /* Add left padding */
}

.logo-img {
    height: 70px; /* Make the logo image larger */
    width: auto;
    margin-right: 10px;
    border-radius: 0; /* Override the global img border-radius for the logo */
}

.nav-links {
    grid-column: 2;
    text-align: center;
    justify-self: center; /* Center the navigation links */
}

.nav-links a {
    color: #8B9DC3;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
    font-size: 18px; /* Make the links a bit larger */
}

.nav-links a:hover {
    color: #DCC7C5;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Placeholder Images */
.placeholder-img {
    background-color: #E5E5E5;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Buttons */
.primary-button {
    background-color: #DCC7C5;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.primary-button:hover {
    background-color: #c9b1af;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.process-step {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Pricing Section */
.price-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
}

.price {
    font-size: 48px;
    color: #DCC7C5;
    margin: 20px 0;
}

.price-card ul {
    list-style: none;
    margin: 20px 0;
}

.price-card li {
    margin: 10px 0;
}

.note {
    font-size: 14px;
    color: #8B9DC3;
    margin-top: 20px;
}

/* Security Section */
.security {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
    border: 1px solid #E0E0E0;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: white;
    margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .nav-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    
    .logo {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
        padding-left: 0;
    }
    
    .nav-links {
        grid-column: 1;
        grid-row: 2;
        margin-top: 15px;
    }
}

/* Image Styles */
.hero-img {
    width: 80%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin: 20px auto;
    display: block;
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.process-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Update the outlined-img class and add a new img styling rule */
.outlined-img {
    border: 3px solid #8AB891; /* Soft green color */
    border-radius: 12px; /* Rounded corners */
    padding: 4px; /* Small padding to give space between image and border */
}

/* Make all images have rounded corners */
img {
    border-radius: 8px; /* Slightly less rounded than the outline */
    overflow: hidden; /* Ensures the image content respects the border-radius */
}

/* For outlined images, make the inner image rounding match the outer border */
.outlined-img img {
    border-radius: 8px; /* Match the inner image rounding to the outer border */
}

.large-img {
    width: 100%; /* Makes image fill its container */
    max-width: 400px; /* Prevents images from becoming too large */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes any extra space below the image */
    margin: 0 auto 20px auto; /* Centers the image and adds bottom margin */
}

/* Adjust feature cards to accommodate larger images */
.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Adjust process steps to accommodate larger images */
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Add this to your existing CSS file */
.extra-large-img {
    width: 100%; /* Makes image fill its container */
    max-width: 800px; /* Twice as large as the large-img class */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes any extra space below the image */
    margin: 0 auto 20px auto; /* Centers the image and adds bottom margin */
    border-radius: 12px; /* Match the rounding of outlined images */
} 